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.

Table view contain 7 rows in which I have to select 1 row then control transfer to the other xib file with some global data.

How is it possible?

share|improve this question
1  
Exactly, what you want right now? – laxonline Feb 23 at 14:45

closed as not constructive by ikinci viking, Rajneesh071, Monolo, Gabriele Petronella, David Rönnqvist May 3 at 9:17

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
}
share|improve this answer
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

This method will be called on click of one of the row in tableview.

EDIT : You can display alert like this inside this method

 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIAlertView *message = [[UIAlertView alloc] initWithTitle:@"Hello World!"
                                                      message:[NSString stringWithFormat:@"This is your UIAlertview message with row number %d.",indexPath.row];                                                     delegate:nil
                                            cancelButtonTitle:@"OK"
                                            otherButtonTitles:nil];
    [message show];
    [message release];
}
share|improve this answer
ex: i have to show window alert view whenever i clicked in that row... – Bhensadadiya Feb 23 at 11:47
Please look at the updated answer – Bhargavi Feb 23 at 18:14
NSMutableArray *mealArray = [[NSMutableArray alloc] init];

 - (void)viewDidLoad
 {   
      mealArray = [[NSMutableArray alloc]initWithObjects:@"Breakfast",@"Lunch",@"Dinner",@"Others", nil];
 }

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
 {
     cell.textLabel.text = [mealArray objectAtIndex:indexPath.row];
 }

 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 {
     newViewController *newVC = [[newViewController alloc] init];
     newVC.mealType = [mealArray objectAtIndex:indexPath.row];
     [self.navigationController pushViewController:newVC animated:YES];
 }
share|improve this answer
laxonline: here newViewController mean?? – Bhensadadiya Feb 23 at 11:40
Push next viewcontroller with the meal type. – laxonline Feb 23 at 11:49
what you suppose to say?? – Bhensadadiya Feb 23 at 14:39
Exactly, what you want right now? – laxonline Feb 23 at 14:43

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