Tagged Questions
11
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
7answers
10k 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
522 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
53 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
2answers
148 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
151 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
99 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
160 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
319 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
828 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 ...