I am having a problem with my project. I have a table view with subviews. I also have a search bar because of how big of an array I have. I have it that for the didSelectRowAtIndexPath, if(indexpath.row==0){... But when I look up a word in the search bar what ever is in the first cell when you select it, it sends you to the subview of the first word of the array since it is setup to the first cell. How can I have it that the subview is linked to a certain word instead of just the integer of the rows so that if the cells word is 'Apple' then it will send me to the Apple Subview.
P.S. I am working on Xcode 4.2 with segues incase that makes a difference of my project.