2015年4月7日

UIScrollView 原理

摘要: UITableView、UITextView是UIScrollView的子类。UITableViewController是UIViewController的子类。UITableViewController是管理表格视图的。表格视图单元是你的UITableView用来在自身显示数据的UIView子类。... 阅读全文

posted @ 2015-04-07 12:04 奋进的闹钟 阅读(195) 评论(0) 推荐(0)

Objective-C数组 NSArray与NSMutableArray的区别 NSDictionary与 NSMutableDictionary 的区别 == int,NSInteger,NSUIn

摘要: Objective-C数组相关操作。// insert code here...NSLog(@"数组");//指定多个字符串创建数组NSArray *array;array=[NSArrayarrayWithObjects:@"0-asd",@"1-fds",@"2-哈咯",@"3-个人",nil]... 阅读全文

posted @ 2015-04-07 12:00 奋进的闹钟 阅读(531) 评论(0) 推荐(0)

UIImage图像旋转

摘要: 【https://gist.github.com/1531596】@interface UIImage (fixOrientation)- (UIImage *)fixOrientation;@end@implementation UIImage (fixOrientation)- (UIImage... 阅读全文

posted @ 2015-04-07 11:27 奋进的闹钟 阅读(414) 评论(0) 推荐(0)

从UIImage的矩阵变换看矩阵运算的原理

摘要: 转载:http://blog.csdn.net/likendsl/article/details/75956111.矩阵的基本知识:struct CGAffineTransform{ CGFloat a, b, c, d; CGFloat tx, ty;};CGAffineTransform CGA... 阅读全文

posted @ 2015-04-07 11:26 奋进的闹钟 阅读(198) 评论(0) 推荐(0)

导航