Я новичок в разработке для iOS, и у меня проблема с моим приложением.Я реализовал навигацию по вкладкам и TableView, но когда вызывал метод didselectrowatindexpath, я не вижу связанного detailView.Это код моего приложения:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSLog(@"ciao");
// UITableViewStyleGrouped table view style will cause the table have a textured background
// and each section will be separated from the other ones.
controller = [[DetailViewController alloc] init];
//initWithStyle:UITableViewStyleGrouped
//andDvdData:[dao libraryItemAtIndex:indexPath.row]];
controller.title = [[dao libraryItemAtIndex:indexPath.row] valueForKey:@"content"];
[self.navigationController pushViewController:controller animated:YES];
}
#import "DetailViewController.h"
@interface ListItemsTableView : UIViewController {
IBOutlet UITableView *myTableView;
Dfetch *dao;
DetailViewController *controller;
}