0
A
回答
0
你可以使用一個UIToolBar然後按住多個UIBarButtonItem對象。
- (void)viewDidLoad {
[super viewDidLoad];
// create a toolbar to have two buttons in the right
UIToolbar* tools = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 133, 44.01)];
// create the array to hold the buttons, which then gets added to the toolbar
NSMutableArray* buttons = [[NSMutableArray alloc] initWithCapacity:2];
// create a standard "add" button
UIBarButtonItem* bi = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(add)];
bi.style = UIBarButtonItemStyleBordered;
[buttons addObject:bi];
[bi release];
// create a standard "refresh" button
bi = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemRefresh target:self action:@selector(refresh)];
bi.style = UIBarButtonItemStyleBordered;
[buttons addObject:bi];
[bi release];
// stick the buttons in the toolbar
[tools setItems:buttons animated:NO];
[buttons release];
// and put the toolbar in the nav bar
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:tools];
[tools release];
}
-(void)add{
NSLog(@"Code to add the row in tableview");
}
-(void)refresh {
NSLog(@"code to refresh the tableView");
}
0
我不湖岸大約iOS5的,但在iOS4的,你可以這樣做只是sublussing(甚至使自己的)的資產淨值。酒吧在理由使其定製。
相關問題
- 1. 如何添加動作到UINavigation bar按鈕
- 2. ios 7中的UINavigation bar後退按鈕
- 3. UINavigation bar的自定義後退按鈕
- 4. UINavigation bar刷新/刷新按鈕代碼
- 5. UINavigation bar後退按鈕沒有響應
- 6. GridView中動態添加多個按鈕
- 7. uinavigation中的多個按鈕
- 8. 如何在Android中動態添加多個按鈕
- 9. 的Android:重新按下按鈕時動態添加按鈕
- 10. 如何動態添加按鈕到TCategoryPanelGroup?
- 11. 如何動態添加按鈕?
- 12. 如何動態地添加按鈕角
- 13. 如何動態添加按鈕到StackPanel
- 14. 如何動態地添加按鈕
- 15. 如何爲按鈕動態添加layout_toRightOf?
- 16. 如何從listView動態添加按鈕?
- 17. UINavigation Bar問題
- 18. 如何在按鈕點擊動態添加更多輸入框?
- 19. JavaFX動態添加按鈕
- 20. 動態添加按鈕
- 21. 動態添加按鈕eventListener
- 22. 動態添加按鈕(jQuery)
- 23. 動態添加按鈕?
- 24. QML動態添加按鈕
- 25. 在wrappanel中添加動態按鈕wpf
- 26. 在WPF中添加動態按鈕
- 27. 動態添加按鈕Kivy
- 28. 動態添加按鈕TableViewCell
- 29. 如何在ios swift中的Uinavigation Bar中實現滑動標題?
- 30. 如何在多個DIV按鈕中添加更多Javascript按鈕