我是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;

}

最佳答案

您没有为UIViewController使用正确的初始化程序。

您应该使用的是 [UIViewController initWithNibName: bundle:] (Apple文档为您链接)。

我怀疑您的“控制器”对象为NULL。

关于iphone - 具有TabBar导航控件和TableView方法didselectrowatindexpath的应用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8267988/

10-11 04:25