https://www.jianshu.com/p/5e1697672e18
设置xib 中的files owner 为需要关联的类
不要设置view的关联
UIView是自定义的view类
UIView*secView = [[[NSBundle mainBundle]loadNibNamed:@"SecView" owner:self options:nil]lastObject];
secView.frame=self.bounds;
[self addSubview:secView];
网友评论