Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I select the table row, nothing happened it didn't go to ContentController and I can't find the UILabel that I declared on ContentController.h when I want to link it to resultLabel

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    ContentController *detailview = [[ContentController alloc] initWithNibName:@"ContentController" bundle:nil];    
    detailview.detailString = [NSString stringWithFormat:@"%d",indexPath.row];
    [self.navigationController pushViewController:detailview animated:YES];     
    [detailview release];
}

ContentController

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    resultLabel.text = self.detailString;
}

Many Many Thanks

share|improve this question
You need to check that have you define UITableViewDelegate to your file or attach table view delegate to your file owner. – Gypsa Nov 18 '11 at 7:06
Is your current view controller contains navigationController? Is you project navigation based? – Aadhira Nov 18 '11 at 7:11
I have attached table view delegate to the file owner. – JBL Nov 18 '11 at 7:17
I have tried contains navigationController and without navigationController, both are not working. It's a view based – JBL Nov 18 '11 at 7:19

5 Answers

This may be because you don't have set your table view property to delegate & datasource by:

tableview.delegate=self;
tableview.datasource=self;

or set their property in xib is another option

share|improve this answer
I agree on this one, it seems the delegate has not been assigned – Yunus Nedim Mehel Nov 21 '12 at 7:38

clickable == NO

Can be a state that in the method cellForRowAtIndexPath :

cell = [self tableCellWithHeight:height clickable:NO withArrowAccessory:NO];

if clickable == NO then didSelectRowAtIndexPath method will never called for that cell.

share|improve this answer

in your ContentController.h

NSString *detailString;

@property (nonatomic, retain) detailString;

ContentController.m

@synthesize detailString;

And in your class where you have table view. set table view delegate & datasource to self (in xib to file owner).

share|improve this answer
Did That. But weird I can't find the detailString to connect at the .xib – JBL Nov 18 '11 at 7:21
add this in viewDidLoad : labelName.text = detailString; – Xyz Nov 18 '11 at 7:25

Check is control is coming inside didSelectRowAtIndexPath applying breakpoint. If not just check whether you have set the UITableView delegate or not.

share|improve this answer
how to set the UITableView delegate? – JBL Nov 18 '11 at 7:08
Table name.delegate = self; – Anshul Jain Nov 18 '11 at 7:09
tablename.datasource = self; and if you work with xib then right click on table and map delegate an datasource to file owner – Anshul Jain Nov 18 '11 at 7:09
tableViewName.delegate = self and add UITableViewDelegate in .h file in @interface MoreRecent : UIViewController<UITableViewDelegate> – Xyz Nov 18 '11 at 7:10
still not working ... – JBL Nov 18 '11 at 7:14

Here is an image of setting the datasource and delegate in interface builder for UITableview which is necessary for the method below to fire on touch.

..

                - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
                {
                    return 1;
                }

                - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
                {
                    return [self.myAlphabet count];
                }

                - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
                {
                    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];    
                    cell.textLabel.text = [self.myAlphabet objectAtIndex:indexPath.row];
                    return cell;
                }

                - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
                {
                    //method for getting text (can be changed to push views)
                    NSString*mystring;
                    mystring = [self.tableView cellForRowAtIndexPath:indexPath].textLabel.text;
                    NSLog(@"%@",mystring);    
                }

Setting datasource and delegate in interface builder

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.