Tagged Questions

12
votes
1answer
3k views

UITableView didSelectRowAtIndexPath: not being called on first tap

I'm having an issue with UITableView's didSelectRowAtIndexPath. My table is setup so that when I select row it initializes a new view controller and pushes it. The first time I tap any row in the ...
3
votes
8answers
11k views

-didSelectRowAtIndexPath: not being called

I'm writing an iPhone app with a table view inside a tab view. In my UITableViewController, I implemented -tableView:didSelectRowAtIndexPath:, but when I select a row at runtime, the method isn't ...
2
votes
4answers
689 views

didSelectRowAtIndexPath not get called

I have a UITableView inside a UIViewController like so: .h @interface OutageListViewController : UIViewController<UITableViewDelegate,UITableViewDataSource> { IBOutlet UITableView ...
1
vote
1answer
62 views

how do I use a file from my apps documents directory with “didSelectRowAtIndexPath”?

I have a bunch of mp3's displayed in a UITableView which are located in my apps documents directory. When I select the row, I want the file to load into AVAudioPlayer and Play. Can anyone suggest ...
0
votes
0answers
37 views

Table View didSelectRowAtIndexPath

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, ...
0
votes
2answers
186 views

IndexPath for UITableView Not Working

I'm trying to determine the indexPath of the select row of my UITableView so I can pass the relevant data accordingly. Right now it keeps logging 0 no matter what cell I select. Any ideas why? ...
0
votes
0answers
184 views

Programatically load data finto uitableview using predicate coredata as if table has already had row selected

I'm trying to use the excellent code in http://blog.sallarp.com/iphone-core-data-uitableview-drill-down/ to populate fur pop-overs // Override point for customization after app launch ...
0
votes
1answer
104 views

Logging a particular row in didSelectRowAtIndexPath

In the method for - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // do stuff here } I have a grouped table view. If I wanted Row 1 of Section 1 to ...
0
votes
1answer
173 views

push next view with didSelectRowAtIndexPath

I added this method didSelectRowAtIndexPath to go to the next view no errors but i can't go to the next view. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
0
votes
1answer
334 views

How to pass the number of row selected from didSelectRowAtIndexPath to initWithNibName?

I have a tableView(first view).. and the detailView(next view) containing the details of that table. now on selecting a particular row from the first view i want to pass the index number of selected ...
0
votes
1answer
847 views

UITableViewCell selection stays in all cells !

I am still in the process of getting myself acquainted with the iPhone SDK. This is what I am trying to do : I have a UIScrollView and each scroll view has an UITableView and I have implemented a ...