00『 基础知识 』iOS开发技术分享

有趣的分类总结1(UIView+SExtend)

2016-08-18  本文已影响122人  青青草原饲养源与园叮叮叮叮

此分类包括以下的功能:

import "UIView+SExtend.h"

import "XCBDefine.h"

import "Masonry.h"

import "UIColor+Hex.h"

@implementation UIView (SExtend)

pragma mark ---

/***********************************/

-(void)addLineBottom{
UIView * lineB = [UIView new];
lineB.backgroundColor = UIColorFromHex(@"c5c5c5");
[self addSubview:lineB];
[lineB mas_makeConstraints:^(MASConstraintMaker *make) {
make.height.equalTo(@0.5);
make.right.left.equalTo(self);
make.bottom.equalTo(self);
}];
}
@end

上一篇 下一篇

猜你喜欢

热点阅读