Well, a lot of variables in the name, sorry, I could not make it simpler.
Firstly, I have a custom table cell with such descriptions

now when the user clicks on the cell itself, it will go to View A, however there is a UITapGestureRecognizer that is connected to the UIImage on the left, which is connected to the segment that goes to View B.
Everything is fine, but I need some data that is inside the table view cell, which I can pass to View B so that it can do some things after the view is displayed.
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if(segue.identifier == "toViewA") {
}else if( segue.identifier == "toViewBFromThatImage" ){
let viewBVC = ( segue.destinationViewController as! viewBVC )
viewBVC.selectedIndex = SOMEHOW DIRREVED INDEXPATH
}
}
, - UIImage ? ?
, .