博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS UIAlertView添加输入框
阅读量:5313 次
发布时间:2019-06-14

本文共 726 字,大约阅读时间需要 2 分钟。

这玩意有时不用就忘,还是记录一下吧

 

 

添加:

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内容即可            }    }

  

UIAlertView在iOS8之后被废弃了,系统建议用UIAlertController实现,实现更简单了

不过在一些纯View上显示提示框,还是用UIAlertView或自定义提示框更方便点。

转载于:https://www.cnblogs.com/yajunLi/p/5830744.html

你可能感兴趣的文章
objective-c overview(二)
查看>>
python查询mangodb
查看>>
consonant combination
查看>>
驱动的本质
查看>>
Swift的高级分享 - Swift中的逻辑控制器
查看>>
Swagger简单介绍
查看>>
Python数据分析入门案例
查看>>
vue-devtools 获取到 vuex store 和 Vue 实例的?
查看>>
Linux 中【./】和【/】和【.】之间有什么区别?
查看>>
内存地址对齐
查看>>
看门狗 (监控芯片)
查看>>
css背景样式
查看>>
JavaScript介绍
查看>>
开源网络漏洞扫描软件
查看>>
yum 命令跳过特定(指定)软件包升级方法
查看>>
创新课程管理系统数据库设计心得
查看>>
Hallo wolrd!
查看>>
16下学期进度条2
查看>>
Could not resolve view with name '***' in servlet with name 'dispatcher'
查看>>
Chapter 3 Phenomenon——12
查看>>