Tagged Questions

2
votes
1answer
29 views

-didSelectRowAtIndexPath not working for me. iPhone SDK 3

Hey everyone. I am trying to incorporate a simple UINavigationController into my tab bar application. I have the TabBar set as the root controller and all seems to work fine. This method is called …
0
votes
1answer
13 views

Share didSelectRowAtIndexPath selection in an array, between 2 controllers

On my never ending quest to share a table row selection to multiple views loaded in a modal view, I have got it down to one issue. I am using Apples DrillDownSave sample code as a model to recreate …
0
votes
1answer
152 views

AppDelegate Being accessed from different classes, from RootController.m

Hi All, My problem is in getting the information from a controller(which happens to be my rootViewController) to another view. In trying to get access to it through the app delegate, I was not able …
0
votes
2answers
23 views

How do you change the textLabel when UITableViewCell is selected?

I want to change the textLabel and detailTextLabel of a cell when it has been selected. I've tried the following, but no change occurs: - (void)tableView:(UITableView *)tableView …
0
votes
5answers
144 views

Unable to pushViewController for subview

I have a UINavigationController and I have seperate UIViews that I switch between using a UISegmentControl. On switching the views, I add the view as a subview to my navigation controller's view: …
0
votes
1answer
39 views

Why do I get a “conflicting type” warning when I implement didSelectRowAtIndexPath:

Hello, I'm implementing the didSelectRowAtIndexPath: method in a tableviecontroller implementation. I get a "conflicting type" warning in my code. Everything seems to work, but the warning bugs me. …
0
votes
1answer
193 views

When I tap the first cell in my tableview didSelectRowAtIndexPath is not triggered

When I tap the first cell in my tableview "didSelectRowAtIndexPath" is not triggered... Has anyone seem this and/or have any clue as to why this happens? All the other cells in my table work just …
0
votes
1answer
146 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 …
0
votes
2answers
662 views

iPhone - UITableView not calling didSelectRowAtIndexPath method in 3.0 SDK

I have an iPhone app that works fine in 2.x version of the SDK. When I upgraded to 3.0, the didSelectRowAtIndexPath method is no longer called, so the action when a user highlights a row doesn't …