导航栏上的按钮未加载
我想在导航栏上添加按钮,但它没有加载到导航栏上。请帮忙。以下是我的代码。请告诉我哪里出错了。我使用的视图是横向
- (void)viewDidLoad {
[super viewDidLoad];
CGRect rect = CGRectMake(0.0, 0.0, 480.0, 32.0);
navBar = [[UINavigationBar alloc] initWithFrame:rect];
navBar.items = self.navigationController.navigationBar.items;
navBar.delegate = self;
//[navBar release];
navBar.tintColor =[UIColor blackColor]
UIBarButtonItem * rightButton = [[UIBarButtonItem alloc]initWithTitle:@"Photo" style:UIBarButtonItemStyleBordered target:self action:@selector(takePhoto)];
UIBarButtonItem * backButton = [[UIBarButtonItem alloc]initWithTitle:@"Camera List" style:UIBarButtonItemStyleBordered target:self action:@selector(cancel:)];
self.navigationItem.rightBarButtonItem = rightButton;
self.navigationItem.leftBarButtonItem = backButton;
//navBar.topItem.rightBarButtonItem = rightButton;
// navBar.topItem.leftBarButtonItem = backButton;
[self.view addSubview:navBar];
[backButton release];
}
i want to add buttons on navigation bar but its not loading on bar.Please help.Following is my code.please tell me where i am going wrong.The view i am using is landscape
- (void)viewDidLoad {
[super viewDidLoad];
CGRect rect = CGRectMake(0.0, 0.0, 480.0, 32.0);
navBar = [[UINavigationBar alloc] initWithFrame:rect];
navBar.items = self.navigationController.navigationBar.items;
navBar.delegate = self;
//[navBar release];
navBar.tintColor =[UIColor blackColor]
UIBarButtonItem * rightButton = [[UIBarButtonItem alloc]initWithTitle:@"Photo" style:UIBarButtonItemStyleBordered target:self action:@selector(takePhoto)];
UIBarButtonItem * backButton = [[UIBarButtonItem alloc]initWithTitle:@"Camera List" style:UIBarButtonItemStyleBordered target:self action:@selector(cancel:)];
self.navigationItem.rightBarButtonItem = rightButton;
self.navigationItem.leftBarButtonItem = backButton;
//navBar.topItem.rightBarButtonItem = rightButton;
// navBar.topItem.leftBarButtonItem = backButton;
[self.view addSubview:navBar];
[backButton release];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个
try this