如何在继承与NSObject的类中触发UIAlertViewDelegate方法

 我来答
da...4@sina.com
2016-12-15 · 超过204用户采纳过TA的回答
知道小有建树答主
回答量:463
采纳率:0%
帮助的人:189万
展开全部
#import "MySubView.h"
2
3 @implementation MySubView
4
5 - (id)initWithFrame:(CGRect)frame
6 {
7 self = [super initWithFrame:frame];
8 if (self) {
9 // Initialization code
10
11 self.backgroundColor = [UIColor darkGrayColor];
12
13 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"testAlert" message:@"TEST" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
14 [alertView show];
15 }
16 return self;
17 }
18
19 - (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
20 {
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式