gpt4 book ai didi

ios - 在 iphone 中显示 UIActionSheet 与 ipad 相同

转载 作者:行者123 更新时间:2023-11-28 17:52:33 25 4
gpt4 key购买 nike

我有一个 UIButton,我想添加一个 UIActionSheet。

如何让 iphone 版本看起来像这样:

enter image description here

如果有另一种方法,即不使用 UIActionSheet,我愿意听取其他方法。

希望我说得足够清楚。如果您有任何疑问,请随时提问。

最佳答案

你可以在 iOS8 中以本地方式执行此操作,只需使用以下内容

    UIPopoverPresentationController *popOverController = [[UIPopoverPresentationController alloc] init];
popOverController.popoverContentSize = CGSizeMake(150, 160);
[popOverController setDelegate:self];

popOverController.sourceView = self.view;
popOverController.sourceRect = sender.frame;
popOverController.permittedArrowDirections = UIPopoverArrowDirectionUp;

[self presentViewController:popOverController
animated:YES
completion:nil];

您可以使用来自 cocoacontrols 的自定义控件之一支持 iOS7

祝你好运

关于ios - 在 iphone 中显示 UIActionSheet 与 ipad 相同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28139819/

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