修改UI
This commit is contained in:
@@ -18,6 +18,7 @@
|
|||||||
@end
|
@end
|
||||||
|
|
||||||
@implementation KBFunctionBarView
|
@implementation KBFunctionBarView
|
||||||
|
static const CGFloat kKBBackButtonWidth = 40;
|
||||||
|
|
||||||
- (instancetype)initWithFrame:(CGRect)frame{
|
- (instancetype)initWithFrame:(CGRect)frame{
|
||||||
if (self = [super initWithFrame:frame]) {
|
if (self = [super initWithFrame:frame]) {
|
||||||
@@ -83,14 +84,14 @@
|
|||||||
UIButton *appButton = [UIButton buttonWithType:UIButtonTypeCustom];
|
UIButton *appButton = [UIButton buttonWithType:UIButtonTypeCustom];
|
||||||
appButton.tag = 100; // 左侧 index = 0
|
appButton.tag = 100; // 左侧 index = 0
|
||||||
UIImage *appImage = [UIImage imageNamed:@"App_icon"];
|
UIImage *appImage = [UIImage imageNamed:@"App_icon"];
|
||||||
[appButton setImage:appImage forState:UIControlStateNormal];
|
[appButton setBackgroundImage:appImage forState:UIControlStateNormal];
|
||||||
appButton.imageView.contentMode = UIViewContentModeScaleAspectFit;
|
appButton.imageView.contentMode = UIViewContentModeScaleAspectFit;
|
||||||
appButton.adjustsImageWhenHighlighted = YES;
|
appButton.adjustsImageWhenHighlighted = YES;
|
||||||
[appButton addTarget:self action:@selector(onLeftTap:) forControlEvents:UIControlEventTouchUpInside];
|
[appButton addTarget:self action:@selector(onLeftTap:) forControlEvents:UIControlEventTouchUpInside];
|
||||||
[self.leftContainer addSubview:appButton];
|
[self.leftContainer addSubview:appButton];
|
||||||
[appButton mas_makeConstraints:^(MASConstraintMaker *make) {
|
[appButton mas_makeConstraints:^(MASConstraintMaker *make) {
|
||||||
make.center.equalTo(self.leftContainer);
|
make.center.equalTo(self.leftContainer);
|
||||||
make.width.height.mas_equalTo(34); // 设计图尺寸
|
make.width.height.mas_equalTo(kKBBackButtonWidth); // 设计图尺寸
|
||||||
}];
|
}];
|
||||||
self.leftButtonsInternal = @[appButton];
|
self.leftButtonsInternal = @[appButton];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user