摘要: 赋值 // 能修改私有成员变量 - (void)setValue:(id)value forKey:(NSString *)key; - (void)setValue:(id)value forKeyPath:(NSString *)keyPath; - (void)setValuesForKeys 阅读全文
posted @ 2016-06-06 22:42 与格律上 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 加载xib2中方式 NSArray *array = [[NSBundle mainBundle] loadNibNamed:@"xib名称" owner:nil options:nil]; UINib *nib = [UINib nibWithNibName:@"xib名称" bundle:nil 阅读全文
posted @ 2016-06-06 22:39 与格律上 阅读(904) 评论(0) 推荐(0) 编辑
摘要: 图片拉伸 +(UIImage*)wlisWithImage:(NSString *)name{ //获取图片 UIImage * img=[UIImage imageNamed:name]; //获取图片宽 CGFloat imgW=img.size.width; //获取图片高 CGFloat i 阅读全文
posted @ 2016-06-06 22:36 与格律上 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 代码创建 //创建UIButton UIButton * btnType=[[UIButton alloc]init]; //设置UIControlStateNormal状态下的文字颜色 [btnType setTitleColor:[UIColor blackColor] forState:UIC 阅读全文
posted @ 2016-06-06 21:22 与格律上 阅读(3855) 评论(0) 推荐(0) 编辑
摘要: 代码创建 /** 创建UIImageView */ UIImageView * imageView=[[UIImageView alloc]init]; /** 设置尺寸位置 */ imageView.frame=(CGRect){{50,50},{230,230}}; /** 创建图片 */ UI 阅读全文
posted @ 2016-06-06 21:15 与格律上 阅读(2349) 评论(0) 推荐(0) 编辑
摘要: // 创建label UILabel *label = [[UILabel alloc] init]; // 设置显示的文字 label.text = @"Hello world!Hello world!Hello world!Hello world!"; // 设置frame label.fram 阅读全文
posted @ 2016-06-06 21:08 与格律上 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 常见属性: @property(nonatomic,readonly) UIView *superview; 获得自己的父控件对象 @property(nonatomic,readonly,copy) NSArray *subviews; 获得自己的所有子控件对象 @property(nonatom 阅读全文
posted @ 2016-06-06 21:05 与格律上 阅读(359) 评论(0) 推荐(0) 编辑