摘要: /*字符属性字符属性可以应用于 attributed string 的文本中。NSString *const NSFontAttributeName;(字体)NSString *const NSParagraphStyleAttributeName;(段落)NSString *const NSFor... 阅读全文
posted @ 2015-11-27 17:23 fantasy_love 阅读(141) 评论(0) 推荐(0) 编辑
摘要: NSURL其实就是我们在浏览器上看到的网站地址,这不就是一个字符串么,为什么还要在写一个NSURL呢,主要是因为网站地址的字符串都比较复杂,包括很多请求参数,这样在请求过程中需要解析出来每个部门,所以封装一个NSURL,操作很方便:[cpp]view plaincopyNSURL*url=[NSUR... 阅读全文
posted @ 2015-11-27 17:19 fantasy_love 阅读(133) 评论(0) 推荐(0) 编辑
摘要: //将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值-(CGPoint)convertPoint:(CGPoint)pointtoView:(UIView*)view;//将像素point从view中转换到当前视图中,返回在当前视图中的像素值-(CGPo... 阅读全文
posted @ 2015-11-27 17:11 fantasy_love 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 首先就是获取键盘的尺寸,需要手动调用registerForKeyboardNotifications 方法,其他两个会自动调用,弹出的键盘高 216(输入英文时候),@implementation ViewController- (void)viewDidLoad{ [super viewDidL... 阅读全文
posted @ 2015-11-27 17:10 fantasy_love 阅读(196) 评论(0) 推荐(0) 编辑