首页 > 代码库 > Custom UIView 通过xib实现一个简单地自定义视图
Custom UIView 通过xib实现一个简单地自定义视图
1 /** 2 * 使用Custom UIView的这条路,我走的很不顺利,前期犯2,中期有事,浪费了很多时间! 3 * 现在空闲的时间不多了,只能抓紧时间写两个小demo,一来做练习,二来整理下也许能给要学习的人一些帮助! 4 */
1 /** 2 * Custom UIView常用的三种实现方法: 3 * Method_1:通过初始化的方式(eg:UITableViewCell的重写) 4 Method_2:通过drawRect的方法,使用代码自己画出想要的视图 5 Method_3:通过xib 6 */
/** * 初始化代码: * * @return [nibView objectAtIndex:0] */ + (ZYCustomView *)initCustomView { NSArray* nibView = [[NSBundle mainBundle] loadNibNamed:@"ZYCustomView" owner:nil options:nil]; return [nibView objectAtIndex:0]; }
/** * 在ViewController里引用 */ - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. ZYCustomView *test = [ZYCustomView initCustomView]; test.backgroundColor = [UIColor yellowColor]; test.clipsToBounds = YES; test.frame = CGRectMake(0, 20, 320, 200); test.lb1.text = @"我是第一行"; [self.view addSubview:test]; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。