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

弹框alertView

时间:2015-09-15 19:57:16      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:


// 创建一个弹框
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@“标题” message:@“显示的具体内容” delegate:self cancelButtonTitle:@“取消” otherButtonTitle:@“确定”,nil];

// 设置alert的显示类型(这个为message为nil时,输入message内容)
alert.alertViewStyle = UIAlertViewStylePlainTextInput;
// 设置文本框输入的内容
NSString *text;
[alert textFiledAtIndex:0].text = text;
// 展示alert弹框
[alert show];

#pragma mark - UIAlertView代理方法
// 点击alertView上面的按钮就会调用这个方法
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
if(buttonIndex == 0)
{
// 一般为取消
return;
}
if(buttonIndex == 1)
{
// 1.取得文本框里的内容
NSString *name = [alertView textFieldAtIndex:0].text;
}
}
// 小技巧
alert.tag 可以用来传一个值,不需要定义全局变量;

弹框alertView

标签:

原文地址:http://www.cnblogs.com/shen5214444887/p/4811071.html

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