barbuttonitem を xcode proj に追加しようとしましたが、最終的にビュー コントローラーを使用して表示され、ビューにコードを配置するとセクションが読み込まれましたが、アクションを接続できません...私は常にインターフェイス ビルダーと IBOutlets を使用してきましたが、それはタブバーコントローラーを機能させるには、このナビゲーションコントローラーをプログラムで配置する必要があるため、オプションではありません
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
//add navbar buttons progamatically b/c nothing to use in xibs...
UIBarButtonItem * popbutt = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemAction target:self action:@selector(apopbuttonPressed:)];
UINavigationItem * navigItem = [[UINavigationItem alloc]initWithTitle:@"Scribbler"];
navigItem.rightBarButtonItem = popbutt;
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
これは、IBOutlet とインターフェイス ビルダーを使用せずにアクションをまとめようとする私の最初の試みであるため、目標は FPPopover を使用し、押されたときにナビゲーション バー ボタン項目にポップオーバーを表示させることです。
-(void)apopbuttonPressed
{
//the controller we want to present as popover
ScribblePopoverViewController * controller = [[ScribblePopoverViewController alloc] initWithStyle:UITableViewStylePlain];
controller.delegate = self;
apop = [[FPPopoverController alloc] initWithViewController:controller];
//apop.arrowDirection = FPPopoverArrowDirectionAny;
apop.tint = FPPopoverDefaultTint;
if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
apop.contentSize = CGSizeMake(300, 500);
}
else {
apop.contentSize = CGSizeMake(200, 300);
}
apop.arrowDirection = FPPopoverArrowDirectionAny;
//sender is the UIButton view
// idk [apop presentPopoverFromView:];
}