一个视图控制器中的多个 UIActionSheet
如果只有一个 -actionSheet:clickedButtonAtIndex:
方法,如何将多个 UIActionSheet
添加到单个 UIViewController
中?
How are multiple UIActionSheet
s added to a single UIViewController
if there is only a single -actionSheet:clickedButtonAtIndex:
method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为您的操作表设置名称或标签并执行类似的操作
希望这会有所帮助
Set a Name or Tag to your Action sheet and do some thing like this
hope this help
您可以创建多个操作表,如下所示:
&之后检查哪个操作表被调用
- (void) actionSheet: (UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{
You can create multiple action sheet as below:
& after that chek out which action sheet is called by
- (void) actionSheet: (UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex{
您可以将多个操作表添加到同一个视图控制器。您可以为每个操作表设置一个标签,并在委托方法中检查该标签以执行必要的功能。
You can add multiple action sheets to the same view controller. You can set a tag for each of the action sheets and check the tag in the delegate method to perform the necessary function.