摘要: 获取文字 button.currentTitle更多如下:@property(nullable, nonatomic,readonly,strong) NSString *currentTitle; // normal/highlighted/selected/disabled. can... 阅读全文
posted @ 2016-01-23 19:19 北狐 阅读(278) 评论(0) 推荐(0) 编辑
摘要: //将像素point由point所在视图转换到目标视图view中,返回在目标视图view中的像素值- (CGPoint)convertPoint:(CGPoint)point toView:(UIView *)view;//将像素point从view中转换到当前视图中,返回在当前视图中的像素值- (... 阅读全文
posted @ 2016-01-23 18:01 北狐 阅读(136) 评论(0) 推荐(0) 编辑
摘要: iOS5.0以后就开始可以使用ARC来代替之前的MRC。1.ARC中使用MRC的类。方法如下:在targets的build phases选项下Compile Sources下选择要不使用arc编译的文件,双击它,输入-fno-objc-arc即可2.MRC中使用ARC的类。方法如下:在targets... 阅读全文
posted @ 2016-01-23 17:59 北狐 阅读(189) 评论(0) 推荐(0) 编辑