码迷,mamicode.com
首页 > 移动开发 > 详细

iOS UIAlertView添加输入框

时间:2016-09-01 18:43:53      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:

添加:

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"新建文件夹" message:@"" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
    [alert setAlertViewStyle:UIAlertViewStylePlainTextInput];
    UITextField *txtName = [alert textFieldAtIndex:0];
    txtName.placeholder = @"请输入名称";
    [alert show];

  

代理点击处理:

#pragma mark - 点击代理
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
    if (buttonIndex == 1) {
        UITextField *txt = [alertView textFieldAtIndex:0];
        //获取txt内容即可
        
    }

    
}

  

iOS UIAlertView添加输入框

标签:

原文地址:http://www.cnblogs.com/yajunLi/p/5830744.html

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