*ios8之前创建弹框的方法:UIAlertView *alertView = [[UIAlertView alloc]initWithTitle:@"提示" message:@"输入的数字不合理" delegate:nil cancelButtonTitle:@"取消" otherButtonTi...
分类:
其他好文 时间:
2015-11-05 22:28:55
阅读次数:
239
实现效果操作步骤绘制一个矩形框,弹出一个alertView,提示是否保存图片点击"是",将图片保存到相册在相册中查看保存的图片效果图实现思路在控制器的view上添加一个imageView,设置图片在控制器的view上添加一个pan手势跟踪pan手势,绘制一个矩形框(图片的剪切区域)在pan手势结束时...
分类:
其他好文 时间:
2015-11-03 13:47:46
阅读次数:
298
传统的alertView- (void)alertView{ UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"你的操作时非法的,您要继续吗" delegate:nil cancelButtonTit...
分类:
其他好文 时间:
2015-11-03 11:54:56
阅读次数:
200
如何写自定义的AlertView效果说明考虑到后面的可定制性以及可维护性,本人用AbstractAlertView定义了AlertView抽象的基类,实现通过子类来完成.注:这只是粗略的写了一个实现,并没有考虑到代码的合理性以及精确性.源码https://github.com/YouXianMing...
分类:
其他好文 时间:
2015-10-15 23:28:13
阅读次数:
208
iOS9之后alertview不让用啦,用UIAlertController吧UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"警告" message:@"xxxxxxx" preferredStyle:...
分类:
移动开发 时间:
2015-10-10 12:12:51
阅读次数:
225
关于提示框的编辑弹出框自己消失-(void)rightrightBarButtonItemAction:(UIBarButtonItem *)sender{UIAlertView *alertView=[[UIAlertView alloc]initWithTitle:@”提示” message:@...
分类:
其他好文 时间:
2015-09-29 22:02:29
阅读次数:
173
// 创建一个弹框UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@“标题” message:@“显示的具体内容” delegate:self cancelButtonTitle:@“取消” otherButtonTitle:@“确定”...
分类:
其他好文 时间:
2015-09-15 19:57:16
阅读次数:
202
?需求 ? 同一个类有多个alertView, 不同的alertView 点击确定按钮 执行的方法不同 ? alertOne 点击 确定按钮 执行 methodOne, alertTwo 点击确定按钮 执行 methodTwo 常规做法 ? ?初始化并显示 alertOne -...
分类:
移动开发 时间:
2015-09-14 21:17:34
阅读次数:
201
1.关于textField在做一些操作,比如登录时账号或密码为空的处理时,有两种方案。①登录按钮可以点击,但会用alertView提示“账号或密码为空”的消息。②此时登录按钮不可点击,只有账号和密码都有值时,才可以点击。两种方法推荐第二种,体验较好。此时需要实现UITextFieldDelegate...
分类:
移动开发 时间:
2015-09-01 16:40:51
阅读次数:
293