摘要:
由于苹果弃用了之前的AlertView,取而代之的是UIAlertController,但UIAlertController写起来代码量却增多了,加之项目中用到提示的地方很多,写起来很麻烦,于是,封装了一个UIAlertController的工具。#import @interface AlertCo... 阅读全文
摘要:
类目(category):为已有的类添加新的方法。(只能添加方法,不能添加实例变量)添加方法:command + n ---->Objective-C File ----->File Type(category)用途:常用在给系统类添加方法。延展(extension):就是定义自己的私有方法。(可以... 阅读全文
摘要:
//设置导航栏全透明 self.navigationController.navigationBar.barStyle = UIBarStyleBlack; [self.navigationController.navigationBar setBackgroundImage:[UIIm... 阅读全文
摘要:
上传用户头像// 选择的头像- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(nullable NSDictionar... 阅读全文
摘要:
1.给lable切圆角 self.studentTypeLab.layer.cornerRadius = 8.0; _studentTypeLab.clipsToBounds = YES;lable切圆角,一定要加下面那句,否则,不会显示圆角。之前做的时候记得是光写第一句就OK的,但是labl... 阅读全文
摘要:
//qq联系客服 UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero]; NSURL *url = [NSURL URLWithString:@"http://wpa.qq.com/msgrd?v=3&uin=... 阅读全文
摘要:
//存放所有的地区对象@property(nonatomic,strong)NSMutableArray *allarray; 1 -(void)loadRegionData 2 { 3 AFHTTPRequestOperationManager *manager=[AFHTTPReques... 阅读全文
摘要:
1 //完成布局设计 2 3 //三列 4 int totalloc=3; 5 // 宽度 6 CGFloat appvieww=85; 7 //高度 8 CGFloat appviewh=30; 9 10 CGFloa... 阅读全文
摘要:
用属性传值时,首先将属性写在.h中在一级页面中:stringCL是二级页面中暂时存放这个值的对象self.phoneNumTF.text是一级页面要传的值self.identificationVC=[[IdentificationViewController alloc] initWithNibNa... 阅读全文
摘要:
1 //创建管理者 2 AFHTTPRequestOperationManager *manger=[AFHTTPRequestOperationManager manager]; 3 manger.responseSerializer.acceptableContentTy... 阅读全文