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

UIAlertView设置文本输入框格式

时间:2016-03-07 18:54:35      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

- (void)viewDidLoad {

    [super viewDidLoad];

   

    UIAlertView * alertV = [[UIAlertView alloc] initWithTitle:@"textfield" message:nil delegate:self cancelButtonTitle:nil otherButtonTitles:@"yes",@"no", nil];

    [alertV setAlertViewStyle:UIAlertViewStylePlainTextInput];//将其设置成文本输入的格式

    [alertV show];

  

}

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

{

    UITextField *nameField = [alertView textFieldAtIndex:0];//获取对应的文本输入框

    NSLog(@"---%@",nameField.text);

}

UIAlertView设置文本输入框格式

标签:

原文地址:http://www.cnblogs.com/pangbin/p/5251168.html

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