我有超过 5 个选项卡,因此给了我一个带有导航栏的表格视图单元格。如何更改表格视图单元格和导航栏。
问问题
133 次
1 回答
1
您可以UITableView
像下面的 UITableView 委托方法一样设置单元格颜色:-
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
cell.backgroundColor = [UIColor colorWithRed:204/255.0 green:0/255.0 blue:0/255.0 alpha:0.1];
}
您可以手动设置 UINavigationBar 上的后退按钮,您只需将以下代码放入ViewDidLoad
方法中,例如:-
UIImage* imageback = [UIImage imageNamed:@"Back_Button.png"];
CGRect frameimgback = CGRectMake(0, 0, 50, 30);
backButton = [[UIButton alloc] initWithFrame:frameimgback];
[backButton setBackgroundImage:imageback forState:UIControlStateNormal];
[backButton addTarget:self action:@selector(goBack:)
forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *btn = [[UIBarButtonItem alloc]initWithCustomView:backButton];
self.navigationItem.leftBarButtonItem = btn;
希望对你有帮助 谢谢
于 2012-12-11T04:47:05.497 回答