UIView格式备忘
作者:
王zuozuo | 来源:发表于
2017-03-29 19:51 被阅读3次#pragma mark - life circle
- (instancetype)initWithFrame:(CGRect)frame{
self = [super initWithFrame:frame];
if(self){
self.backgroundColor = [UIColor colorWithWhite:0 alpha:0.5];
[self addSubview:self.upView];
[self setMasonry];
}
return self;
}
#pragma mark - delegate
#pragma mark - event response
#pragma mark - private methods
- (void)setMasonry{
}
#pragma mark - getters and setters
本文标题:UIView格式备忘
本文链接:https://www.haomeiwen.com/subject/greyottx.html
网友评论