gpt4 book ai didi

iphone - 如何在 iPhone 上创建多按钮确认?

转载 作者:行者123 更新时间:2023-12-03 20:24:25 26 4
gpt4 key购买 nike

在 iPhone 的日历应用程序中,当您按下“删除事件”按钮时,会从底部滑入确认信息。有谁知道这方面的任何示例代码,或者它只是一个带有自定义背景的模态呈现的简短 View ?

如果这是使用自定义 View 制作的,您知道我可以在哪里获得与日历应用程序中使用的背景图形相同的背景图形吗?

提前致谢!

注意:我说的不是 UIAlertView 对话框,而是带有多个按钮的滑入确认。

最佳答案

UIActionSheet 就是您正在寻找的内容。

这里有一些代码示例可以帮助您开始使用:

UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Save photo?" delegate:self cancelButtonTitle:@"No" destructiveButtonTitle:@"Yes" otherButtonTitles:nil];
[actionSheet showInView:self.view];
[actionSheet release];

这将从底部滑入操作表。它有 2 个按钮。是和否。

当用户选择任何按钮时,actionSheet:didDismissWithButtonIndex: 方法将被调用

-(void) actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{
//your code here
}

您的 Controller 类必须订阅 < UIActionSheetDelegate > 协议(protocol)

希望这有帮助!

关于iphone - 如何在 iPhone 上创建多按钮确认?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2181561/

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