So I am trying to pass some data from the current indexPath.row between two view controllers. Both of the view controllers has this:
    var imageFile = [PFFile]()
    var imageText = [String]()
    var username = [String]()
    var createdAt = [NSDate]()
    var objID = [String]()
    var thumbEmoji = [NSArray]()
    var loveEmoji = [NSArray]()
    var laughEmoji = [NSArray]()
    var handsEmoji = [NSArray]()
    var pooEmoji = [NSArray]()
    var comments = [NSArray]()
    var tagString = ""
How can I pass this in the override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) and get the current indexPath.row?
 
     
     
     
    