Hello EveryOne.
I have made a UITableView in which I have insertes strings and this works but when I select a row so nothings happen even I have declared object of new controller in didSelectRowAtIndexPath. Here is the code:
Code:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
TodayTasks *today = [[TodayTasks alloc] initWithNibName:@"TodayTasks" bundle:nil];
// ...
// Pass the selected object to the new view controller.
[self.navigationController pushViewController:today animated:YES];
[today release];
}
Please help me in this. I'll be thankful to you