gpt4 book ai didi

ios - 使用 UIPopoverPresentationController 在 iPhone 上的 Popover 演示

转载 作者:行者123 更新时间:2023-12-01 18:42:07 39 4
gpt4 key购买 nike

大家好,我想为 iPhone 制作一个弹出框,所以这是我出错的代码,请建议我想创建如下图所示的内容,但我的内容覆盖了整个屏幕,我不想使用 segue。所以基本上我想要如果我单击按钮,应弹出调整大小的 View Controller 我该如何实现这一点请帮助。我已按照本教程进行操作。
https://www.youtube.com/watch?v=UQBbJQNEDA4
enter image description here

#import "ViewController.h"
#import "Popup.h"

@interface ViewController ()<UIPopoverPresentationControllerDelegate>
{
Popup * popupController;
UIPopoverPresentationController *popupPresentationController;
}
@end

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.


}


- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (IBAction)popupOnClick:(id)sender {

popupController=[self.storyboard instantiateViewControllerWithIdentifier:@"Popup"];
popupController.modalPresentationStyle=UIModalPresentationPopover;
popupPresentationController= [popupController popoverPresentationController];
popupPresentationController.permittedArrowDirections = UIPopoverArrowDirectionUp;
popupController.preferredContentSize=CGSizeMake(150, 300);
popupPresentationController.delegate = self;

[self presentViewController:popupController animated:YES completion:NULL];


// in case we don't have a bar button as reference
popupPresentationController.sourceView = _popupButton;
popupPresentationController.sourceRect = _popupButton.frame;
}
- (UIModalPresentationStyle)adaptivePresentationStyleForPresentationController:(UIPresentationController *)controller traitCollection:(UITraitCollection *)traitCollection {
return UIModalPresentationNone;
}

@end

最佳答案

这是你的问题:

[self presentViewController:popupController animated:YES completion:nil];
popupPresentationController= [popupController popoverPresentationController];
popupPresentationController.delegate = self;

该代码的顺序错误。您必须设置 delegate在调用 presentViewController 之前.

关于ios - 使用 UIPopoverPresentationController 在 iPhone 上的 Popover 演示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41367940/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com