腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
搜索
关闭
文章
问答
(272)
视频
开发者手册
清单
用户
专栏
沙龙
全部问答
原创问答
Stack Exchange问答
更多筛选
回答情况:
全部
有回答
回答已采纳
提问时间:
不限
一周内
一月内
三月内
一年内
问题标签:
未找到与 相关的标签
筛选
重置
1
回答
使用
UIActionSheetDelegate
执行多个Segues
我希望通过一个UIBarButtonItem按钮拥有多个segue,根据通过
UIActionSheetDelegate
的响应,正确的UIViewController将通过push segue加载。这是我当前的
UIActionSheetDelegate
代码。
浏览 1
修改于2014-06-09
得票数 2
回答已采纳
2
回答
UIActionSheetdelegate
未获取子视图
在我的iOS 8应用程序中,我使用了UIActionSheet。我试图在willPresentActionSheet委托方法中更改按钮标题的颜色,但它不能将按钮识别为它的子视图。UIActionSheet *popup = [[UIActionSheet alloc] initWithTitle:@"Select an Option" delegate:self cancelButtonTitle:nil destructiveButtonTitle:nil otherButtonTitles: nil]; popup.tag =
浏览 3
提问于2014-12-31
得票数 1
2
回答
UIActionSheet - class不实现“
UIActionSheetDelegate
”协议。
MESSAGE: // **warning: Semantic Issue: Sending 'DeveloperTL *' to parameter of incompatible type // 'id<
UIActionSheetDelegate
浏览 0
提问于2011-06-23
得票数 2
回答已采纳
2
回答
视图控制器的
UIActionSheetDelegate
警告
应用程序编译、运行并正常工作,但我收到警告: warning: class 'MyViewController' does not implement the '
UIActionSheetDelegate
浏览 1
修改于2011-03-28
得票数 0
回答已采纳
2
回答
协议
UIActionSheetDelegate
中的objective方法名
-(void)actionSheet:(UIActionSheet *)actionSheet didDismissWithButtonIndex:(NSInteger)buttonIndex 在接口
UIActionSheetDelegate
浏览 2
提问于2014-01-17
得票数 1
回答已采纳
1
回答
使用相同
UIActionSheetDelegate
方法的多个按钮
当每个按钮被点击时,
UIActionSheetDelegate
方法被调用:-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex
浏览 0
提问于2011-02-10
得票数 0
1
回答
使用或访问
UIActionSheetDelegate
方法中的类变量
[classVariable release];我不知道为什么我不能从
UIActionSheetDelegate
方法访问变量。我已经声明了变量并给出了值。 谢谢
浏览 1
修改于2011-03-28
得票数 1
2
回答
如何解决有关未实现'
UIActionSheetDelegate
‘协议的警告
Classes/ROSettingViewController.m:321: warning: class 'ROSettingViewController' does not implement the '
UIActionSheetDelegate
浏览 0
提问于2010-06-17
得票数 0
回答已采纳
3
回答
不兼容的指针类型将“Class”发送到类型为“id<
UIActionSheetDelegate
>”的参数
我收到警告,不兼容的指针类型发送'Class‘到'id’类型的参数,在下面的“委托:自我”行:{ delegate:self
浏览 0
修改于2012-06-06
得票数 13
回答已采纳
1
回答
我在peoplePickerNavigationController中使用了UIActionSheet,并尝试在
UIActionSheetDelegate
中使用presentModalViewController
情况是这样的: ABPeoplePickerNavigationController *picker=[[ABPeoplePickerNavigationController alloc]init]; [self presentModalViewController:picker animated:YES];我在选择器中使用了一个UIActionSheet,根
浏览 0
提问于2011-07-22
得票数 0
1
回答
使用XCode 4在视图中添加更多委托协议
@interface WinesViewController : UITableViewController <
UIActionSheetDelegate
> {} 在上面的代码中,添加了
UIActionSheetDelegate
协议,因为我使用UIActionSheet对TableView进行排序,而它需要一个委托。它告诉我添加它的方式与我已经添加
UIActionSheetDelegate
的方式完全相同,那么现在如何为DetailViewController
浏览 4
提问于2012-07-14
得票数 0
回答已采纳
2
回答
目标C: AlertView不工作
otherButtonTitles:nil]; [alert release];我已经在.h文件中包含了
UIActionSheetDelegate
协议@interface Control_FunViewController : UIViewController <
UIActionSheetDelegate
> { UITextField *nameField
浏览 2
提问于2011-04-05
得票数 1
回答已采纳
2
回答
在接口声明中设置编译条件时,接口生成器无法识别IBOutlet
UINavigationControllerDelegate, MFMessageComposeViewControllerDelegate, <UINavigationControllerDelegate, MFMailComposeViewControllerDelegate,
UIActionSheetDelegate
浏览 4
修改于2011-02-23
得票数 0
回答已采纳
3
回答
在从UIActionSheet中按下按钮后调用方法时需要帮助
我的相关代码如下所示:@interface MapViewController : UIViewController<MKMapViewDelegate,
UIActionSheetDelegate
我个人的预感是,这可能与我实现
UIActionSheetDelegate
接口的方式有关。
浏览 0
修改于2017-11-30
得票数 0
回答已采纳
1
回答
如何在编译时使用不同的接口声明而不混淆接口生成器
例如:#ifdef FREE#else#endif {
浏览 0
提问于2011-03-03
得票数 2
回答已采纳
2
回答
IOS:#import <AddressBook/AddressBookUI.h>文件未找到
AddressBook.h> @interface PersonViewController () <UITextFieldDelegate,
UIActionSheetDelegate
浏览 0
提问于2012-03-20
得票数 1
回答已采纳
5
回答
如何使用可选的方法创建协议?
我注意到在iPhone开发工具包中定义的几个协议中标记为可选的方法,例如
UIActionSheetDelegate
协议。 我如何定义自己的协议,并将一些方法设置为可选的?
浏览 0
提问于2008-11-26
得票数 137
回答已采纳
1
回答
如何对ios中的每个视图扩展文件?
@interface IXComposeViewController ()<UITextFieldDelegate,
UIActionSheetDelegate
,UITableViewDataSource
浏览 7
提问于2015-01-15
得票数 0
回答已采纳
2
回答
UIActionSheet再次出现在iPad上后崩溃
.H文件} @property (nonatomic, retain) UIActionSheet
浏览 0
提问于2011-07-03
得票数 0
回答已采纳
1
回答
如何调用presentViewController?
情况是这样的:我有一个类MainView (这是一个UIViewController),并从它调用一个
UIActionSheetDelegate
类。
浏览 0
提问于2011-06-13
得票数 1
回答已采纳
第 2 页
第 3 页
第 4 页
第 5 页
第 6 页
第 7 页
第 8 页
第 9 页
第 10 页
第 11 页
点击加载更多
领券