
IOS
zheshimingzi
这个作者很懒,什么都没留下…
展开
-
UITableViewDataSource
UITableViewDataSource IOS9.1原创 2015-10-23 17:04:37 · 490 阅读 · 0 评论 -
UITableViewDelegate_常用
UITableViewDelegate 常用点击TableViewCell- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath;设置单元格编辑模式- (UITableViewCellEditingStyle)tableView:(UITableView *)tableV原创 2015-10-26 14:40:02 · 408 阅读 · 0 评论 -
oc声明属性时的写法
oc声明属性时的写法方式一:直接在@interface中的大括号中声明。@interface MyTest : NSObject{ NSString *mystr;}方式二:在@interface中声明,然后再在@property中声明。@interface MyTest : NSObject{ NSString *_mystr;}@property (strong, non转载 2015-11-24 10:44:06 · 1616 阅读 · 0 评论 -
CGAffineTransform
CGAffineTransformtransform我们一般称为形变属性,其本质是通过矩阵变化改变控件的大小、位置、角度常用方法CGAffineTransformTranslate (移动)CGAffineTransformScale (缩放)CGAffineTransformRotate (旋转)用法://旋转 - (IBAction)rotationButtonP原创 2015-11-19 17:30:49 · 663 阅读 · 0 评论