码迷,mamicode.com
首页 > 其他好文 > 详细

UIAlertView 弹出提示

时间:2015-01-20 10:24:36      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

 UIAlertView *sussess = [[UIAlertView alloc]initWithTitle:nil message:@"发布成功" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles: nil];

[sussess show];

 

弹出单击确定 操作:delegate:self  遵守协议<UIAlertViewDelegate>

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{

在这个方法中写入要执行的操作

}

UIAlertView 弹出提示

标签:

原文地址:http://www.cnblogs.com/qq907374866/p/4235236.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!