web-dev-qa-db-ja.com

プログラムで作成されたuibuttonからプログラムでポップオーバーを表示する方法(インターフェイスビルダーを使用しない)

プログラムでビューコントローラー内に作成したボタンがあります。ボタンが押されたら、メソッドを使用してプログラムでポップオーバーを作成します。

私のビューコントローラーのViewDidLoadで作成されるボタン.m

 UIView *moreFundInfoView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 540, 620)];
[self.view addSubview:moreFundInfoView];
[moreFundInfoView setBackgroundColor:[UIColor RMBColor:@"b"]];

btnContact = [UIButton buttonWithType:(UIButtonTypeRoundedRect)];


[btnContact setFrame:CGRectMake(390, 575, contactButton.width, contactButton.height)];
 btnContact.hidden = NO;
[btnContact setTitle:@"Contact" forState:(UIControlStateNormal)];
[moreFundInfoView addSubview:btnContact];

[btnContact addTarget:self action:@selector(showContactDetails:) forControlEvents:UIControlEventTouchUpInside];

次に、ボタンが押されたときに使用する方法があります。

-(void) showContactDetails: (id) sender
{
UIViewController *popoverContent = [[UIViewController alloc]init];

UIView *popoverView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 200, 300)];

[popoverView setBackgroundColor:[UIColor RMBColor:@"b"]];

popoverContent.view = popoverView;

popoverContent.contentSizeForViewInPopover = CGSizeMake(200, 300);

UIPopoverController *contactPopover =[[UIPopoverController alloc] initWithContentViewController:popoverContent];

[contactPopover presentPopoverFromRect:btnContact.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES ];

[contactPopover setDelegate:self];

}

ここで何が欠けていますか?正常に実行されますが、ボタンをクリックするとすぐにアプリがクラッシュします。デリゲートの問題だと思いますが、よくわかりません。何かアドバイスをいただければ幸いです。

15
Berns

このコードはあなたに役立つと思います。あなたは確かにデリゲートメソッドを欠いています

ViewController *viewController = [[ViewController alloc] initWithNibName:@"ViewController" bundle:nil];
UINavigationController *navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:navigationController];
popover.delegate = self;
popover.popoverContentSize = CGSizeMake(644, 425); //your custom size.
[popover presentPopoverFromRect:button.frame inView:self.view permittedArrowDirections: UIPopoverArrowDirectionLeft | UIPopoverArrowDirectionUp animated:YES];

UIPopover Delegateメソッドを忘れないようにしてください。そうしないと、アプリケーションが確実にクラッシュします。それが必須です。

32
Pratik Somaiya
 UIViewController *controller = [[UIViewController alloc] init];
 [view removeFromSuperview]; //view is a view which is displayed in a popover
 controller.view = view;
 UIPopoverController *popover = [[UIPopoverController alloc] initWithContentViewController:controller];
 popover.delegate = self;
[popover presentPopoverFromRect:button.frame inView:self.view permittedArrowDirections:UIPopoverArrowDirectionLeft animated:YES];
2
PVCS

私がしなければならなかったのは、.hファイルのプロパティを「保持」から「強力」に変更することだけでした。

1
Berns

はい、「retain」のプロパティを「strong」に変更すると、ピッカービューオブジェクトを保持できます。あなたのコードの問題は、メソッドが完了するとUIPopoverControllerオブジェクトが自動的に割り当て解除されることだったと思います。強いプロパティを作成すると、オブジェクトを強くポイントするようになります。

1
Pawan Joshi