iphone实现NavigationController&n…

来源:互联网 发布:淘宝全屏导航栏颜色 编辑:程序博客网 时间:2024/06/05 14:34

实现右边的书签按钮:


UIBarButtonItem *anotherButton =[[UIBarButtonItem alloc]

initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarkstarget:self

action:@selector(methodtocall:)];

self.navigationItem.rightBarButtonItem = anotherButton;[anotherButton release];

//由于本地视图会retain它,所以我们可以release了

0 0
原创粉丝点击