iphone项目中标题栏的问题

时间:2011-05-05 12:20:16

标签: iphone objective-c

每个人都

我正在以编程方式创建一个分组表视图,使用下面的代码表正在创建,但标题栏没有显示我已经完成的错误,任何人都可以提前帮助我吗

       self.title = @"User Details";

 self.navigationItem.leftBarButtonItem = [[[UIBarButtonItem alloc] 
                                              initWithBarButtonSystemItem:UIBarButtonSystemItemCancel 
                                              target:self action:@selector(cancel_Clicked:)] autorelease];

    self.navigationItem.rightBarButtonItem = [[[UIBarButtonItem alloc] 
                                               initWithBarButtonSystemItem:UIBarButtonSystemItemSave 
                                               target:self action:@selector(save_Clicked:)] autorelease];

    self.view.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];


         UITableView *tableView1;
        tableView1 = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 415)style:UITableViewStyleGrouped];
        tableView1.dataSource = self;
        tableView1.delegate = self;
        [self.view addSubview:tableView1];

1 个答案:

答案 0 :(得分:0)

你不是指自己。 navigationItem .title = @“用户详情”; ?