摘要: 0. enablesReturnKeyAutomatically默认为No,如果设置为Yes,文本框中没有输入任何字符的话,右下角的返回按钮是disabled的。1.borderStyle设置边框样式,只有设置了才会显示边框样式 text.borderStyle = UITextBorderSt... 阅读全文
posted @ 2016-01-17 13:00 北狐 阅读(307) 评论(0) 推荐(0) 编辑
摘要: NSString+URLEncoding.h#import @interface NSString(URLEncoding)- (NSString *)urlEncodeString;@endNSString+URLEncoding.m#import "NSString+URLEncoding.h"... 阅读全文
posted @ 2016-01-17 12:53 北狐 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 我之前写过一篇博客,介绍缓存处理的三种方式,其中最难,最麻烦,最占内存资源的还是图片缓存,最近做的项目有大量的图片处理,还是采用了SDWebImage来处理,但是发现之前封装好的代码报错了。研究发现,是我用了新版的SDWebImage,好多方法都变了。现在把代码贴出来,供大家参考。尤其是新手,看完这... 阅读全文
posted @ 2016-01-17 12:52 北狐 阅读(131) 评论(0) 推荐(0) 编辑
摘要: UIViewContentModetypedef enum {UIViewContentModeScaleToFill,UIViewContentModeScaleAspectFit,// contents scaled to fit with fixed aspect. remainder is ... 阅读全文
posted @ 2016-01-17 02:21 北狐 阅读(186) 评论(0) 推荐(0) 编辑