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

UIAlertView笔记

时间:2014-12-22 12:42:06      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

 

头文件: 

@interface MyAlertViewViewController : UIViewController<UIAlertViewDelegate> { 

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

-(IBAction) buttonPressed; 

@end


源文件: 

-(IBAction) buttonPressed 

UIAlertView*alert = [[UIAlertView alloc]initWithTitle:@"提示" 

message:@"请选择一个按钮:" 

delegate:self 

cancelButtonTitle:@"取消" 

otherButtonTitles:@"按钮一", @"按钮二", @"按钮三",nil]; 

[alert show];

}  

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

{

NSString* msg = [[NSString alloc] initWithFormat:@"您按下的第%d个按钮!",buttonIndex]; 

UIAlertView* alert = [[UIAlertView alloc]initWithTitle:@"提示" 

message:msg 

delegate:nil 

cancelButtonTitle:@"确定" 

otherButtonTitles:nil];  

[alert show]; 

}

UIAlertView笔记

标签:

原文地址:http://www.cnblogs.com/progfun/p/4177785.html

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