一、初始化方法- (instancetype)initWithTitle:(NSString*)title message:(NSString*)message delegate:(id/**/)delegate cancelButtonTitle:(NSString*)cancelButtonTi...
分类:
移动开发 时间:
2015-08-08 16:15:01
阅读次数:
207
1.前言 在前段时间手机QQ:升级iOS8.3后,发图就崩的情况,就是因为iOS8更新UIAlertController后,仍然使用UIAlertview导致的具体原因分析 这个可以看腾讯团队发出来的总结分享。http://bugly.qq.com/blog/?p=135#在Xcode头文件中苹果....
分类:
移动开发 时间:
2015-08-07 19:26:23
阅读次数:
149
主要的几个手势操作,便于以后查找,所以简单总结下@interface MainViewController ()@property(nonatomic,retain)UIImageView *imageView;
@property(nonatomic,retain)UIAlertView *alert;@end@implementation MainViewController- (void)de...
分类:
其他好文 时间:
2015-08-04 21:08:35
阅读次数:
126
UIAlertView1.Title获取或设置UIAlertView上的标题。2.Message获取或设置UIAlertView上的消息 UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"me...
分类:
移动开发 时间:
2015-08-01 18:56:47
阅读次数:
253
这个控件是将UILabel和UITextField放到一个自定义的视图上,实现统一对两个控件进行操作1.首先在xcode上建一个LTView的类2.在LTView 的 .h文件中签订一个 UITextFieldDelegate 的协议3.在.h文件中建两个属性(UILabel 和UITextField)例子:@property(nonatomic ,retain)UILabel *myLabel;...
分类:
其他好文 时间:
2015-07-31 22:00:10
阅读次数:
245
1.实例化 UIAlertView *view=[[UIAlertView alloc]initWithTitle:@"Title" message:@"message" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"ot...
分类:
其他好文 时间:
2015-07-30 22:58:20
阅读次数:
126
iOS 开发中经常会遇到需要弹窗提示的情况(这个再浏览器端我们经常会遇到)
如下图:
这个是怎么实现的了?
其实很简单iOS提供一个类 UIAlertView
我们使用他即可
UIAlertView *alertV=[[UIAlertView alloc]initWithTitle:@"alert标题" message:@"alertMesaage" delega...
分类:
移动开发 时间:
2015-07-29 23:13:01
阅读次数:
259
假如有两个ViewController: A 和 B(使用了UINavigationController), 在B中有一个TextField, 一个Button.(在ARC模式下) 在Button调用的方法中创建一个UIAlertView, 在AlertView的代理方法clickedButtonA...
分类:
其他好文 时间:
2015-07-29 15:41:58
阅读次数:
165
1、前言iOS8添加UIAlertController代替UIAlertView、UIActionSheet的使用。本文在不使用UIAlertController的情况下,用最简单的方法让UIAlertView、UIActionSheet兼容iOS8.2、UIAlertViewiOS8下,假设UIA...
分类:
移动开发 时间:
2015-07-29 13:43:13
阅读次数:
148
场景是这样的,点击按钮,开辟新线程,弹出alertView。然后调用dismissWithClickedButtonIndex让其消失。 1 /** 定义按钮 */ 2 -(void)setupAllBtns{ 3 UIButton *btn2 = [UIButton buttonWit...
分类:
编程语言 时间:
2015-07-27 18:10:50
阅读次数:
202