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を行うことができます(あるいはあなた自身の作る)NAVを。それを習慣化する理由でバー。
関連する問題
- 1. 目的のcのuinavigation barにドロップダウンリストを追加する方法
- 2. UINavigation barボタンにアクションを追加する方法
- 3. UINavigation barリロード/リフレッシュボタンコード
- 4. UINavigation Bar Backの隣にあるボタン
- 5. UINavigationにUILabelsを追加する方法は?
- 6. UINavigation barのバックボタンが応答しない
- 7. バックナンバーをUINavigation Barの上に置きます。
- 8. UINavigation barin UIViewControllerをカバーするためにサブビューを追加するには?
- 9. uinavigation barの左側にあるボタンの問題
- 10. ビューベースのアプリケーションにuinavigationコントローラを追加する方法
- 11. Ionic AppのTab Barに "more"ボタンを追加するには?
- 12. はUINavigationバーのシャドウ効果を追加する方法
- 13. UINavigationControllerなしでUINavigationバーにUIBarButtonItemを追加
- 14. Tab Bar Controllerを現在のApp Flowにプログラムで追加する
- 15. JTabbedPane Tab Barに 'Minimize'ボタンを追加する
- 16. JSDoc:Nav Barに関数を追加する方法
- 17. iOS 11 UINavigation Barがめちゃくちゃになっています
- 18. iOS 11とSwift 3のUINavigation Barのスタックビュー内でUIButtonのタップジェスチャーを有効にするには
- 19. swift3でUINavigation barがクリアされないXcode
- 20. Swift 3.0、Xcode 8.1、Tab BarとしてのUiNavigation
- 21. Tab Bar Item(UITabBar)を追加するとXcode 4.3がクラッシュする
- 22. Yii2 Nav Barメニュー項目に画像を追加
- 23. ios5 storyboard nav barに右のボタンを追加
- 24. 「追加ボタン」を追加するには?
- 25. nginxでaddress.com:port/barにaddress.com/foo/barをリダイレクトする方法は?
- 26. Swift 3を使用したUICollectionViewのUINavigation Backボタンを追加します。
- 27. UINavigationコントローラは、ランドスケープモード
- 28. UINavigationコントローラは
- 29. Tab Bar Navigation Controllerを追加した後に項目が消えます
- 30. iphoneでUINavigationBarにUIImageViewを追加する