12 2015 档案
摘要:1.记得在项目中设置项目文件命名的prefix,避免命名冲突。 2.在适当的位置对属性和方法进行注释,建议利用插件(如VVDocument)提供效率。在给企业看文档时,可以利用(如Doxygen)这种软件生成一个document。 3.操作CoreData需要谨慎,小小改动都有可能让程序崩溃。 4.
阅读全文
摘要:The id type simply says a method will return a reference to an object. It could be any object of any type.The instancetype type says a method will ret
阅读全文
摘要:Scale:拉伸图片,图片变形。 Aspect:图片长宽的保持比例,图片不变形。 Aspect Fill(常用):图像充满容器。以长宽中小的参数为限制。 Aspect Fit:图像在容器中完整显示。以长宽中大的参数为限制。 Scale To Fill: 缩放图片,使图片充满容器。图片未必保持长宽比例
阅读全文
摘要:image.userInteractionEnabled = YES; UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(imagePressed:)]; [image addGestureRecognizer:tap];
阅读全文
摘要:安装cocoapods的流程: 1.打开终端,输入: sudo gem update —system 2.输入密码,稍等 3.gem sources --remove https://rubygems.org/ ,最后的那个斜杠不能省略!!成功后显示 ...removed from sources。
阅读全文
摘要:NSString *path = [[@"~" stringByExpandingTildeInPath] stringByAppendingString: @"/tmp.txt"]; [path writeToFile:path atomically:YES encoding:NSUTF8StringEncoding error:nil];
阅读全文
摘要:源码来自《Objective-C基础教程》
阅读全文
摘要:NSDateFormatter *formatter = [[NSDateFormatter alloc]init]; [formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss"]; NSString *dateTime = [formatter stringFromDate:[NSDate date]]; NSLog(@"formatted time i...
阅读全文
摘要:创建Empty文件,最好与其Controller同名, 在File's Owner的类属性里面指明其所属类(或者说它是个什么Controller), 从File's Owner右键拖向内部创建的视图(如UIView),选择view进行关联。 在Controller 的initWithNibName方
阅读全文
摘要:1.不可变词典NSDictionary 字典初始化 NSNumber *numObj = [NSNumber numberWithInt:100]; 以一个元素初始化 NSDictionary *dic = [NSDictionary dictionaryWithObject:numObj forKey:@"key"]; 初始化两个元素 NSDictionary *dic =...
阅读全文
摘要:1、 同步GET请求 //第一步,创建URL NSURL *url = [NSURL URLWithString:@"http://api.hudong.com/iphonexml.do?type=focus-c"]; //第二步,通过URL创建网络请求 NSURLRequest *request = [[NSURLRequ...
阅读全文
摘要:新手写来自己用做备忘录的,可能存在很多错误,不喜勿喷。如有高手愿意指点一下,在下感激不尽!
阅读全文
摘要:You can easily add it to the plist using the GUI: On the last line add the + Enter the name of the group: App Transport Security Right click on the gr
阅读全文