gpt4 book ai didi

iPhone 应用程序操作按钮

转载 作者:行者123 更新时间:2023-12-03 21:00:29 25 4
gpt4 key购买 nike

我需要在我的 iPhone 应用程序中添加一个操作按钮。单击该按钮时,需要弹出带有按钮的 UIActionSheet。谁能告诉我如何添加操作按钮? - 意思是iPhone应用程序有内置的操作按钮吗?或者我们是否需要创建一个带有图像的新按钮?

提前致谢!

最佳答案

假设这是在 View Controller 中,您可以执行以下操作:

- (void)viewDidLoad
{
UIBarButtonItem *actionButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemAction
target:self
action:@selector(methodThatShowsSheet)];
self.navigationItem.rightBarButtonItem = actionButton;
[actionButton release];
}

(请原谅奇怪的缩进,以使其适合合理的宽度(我通常只是让 Xcode 自动换行缩进所有内容)。

请参阅 Nick Veys 的回答,了解如何实现 methodThatShowsSheet

关于iPhone 应用程序操作按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/780965/

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