更换版本更新图

This commit is contained in:
chenshuanglin
2023-04-06 14:25:02 +08:00
parent 82d3009c89
commit f6cfb144c7
3 changed files with 3 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View File

@@ -195,7 +195,7 @@
_updateBtn = [UIButton buttonWithType:UIButtonTypeCustom];
[_updateBtn setTitle:@"立即更新" forState:UIControlStateNormal];
_updateBtn.titleLabel.font = [UIFont systemFontOfSize:14];
_updateBtn.titleLabel.textColor = [ThemeColor confirmButtonTextColor];
[_updateBtn setTitleColor:[ThemeColor cancelButtonTextColor] forState:UIControlStateNormal];
[_updateBtn setBackgroundImage:image forState:UIControlStateNormal];
_updateBtn.layer.cornerRadius = 36 / 2;
_updateBtn.layer.masksToBounds = YES;
@@ -213,6 +213,8 @@
[_cancelBtn setBackgroundImage:image forState:UIControlStateNormal];
_cancelBtn.layer.cornerRadius = 36 / 2;
_cancelBtn.layer.masksToBounds = YES;
_cancelBtn.layer.borderWidth = 1;
_cancelBtn.layer.borderColor = [ThemeColor appMainColor].CGColor;
[_cancelBtn addTarget:self action:@selector(cancelAction) forControlEvents:UIControlEventTouchUpInside];
}
return _cancelBtn;