Skip to content

Commit 4bde8a5

Browse files
committed
OTPTableViewCell 颜色
1 parent fc624ae commit 4bde8a5

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Coding_iOS/Coding_iOS-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.0</string>
20+
<string>3.0.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -32,7 +32,7 @@
3232
</dict>
3333
</array>
3434
<key>CFBundleVersion</key>
35-
<string>3.0.201506261915</string>
35+
<string>3.0.1.201507081630</string>
3636
<key>LSRequiresIPhoneOS</key>
3737
<true/>
3838
<key>NSLocationWhenInUseUsageDescription</key>

Coding_iOS/Ease_2FA/Views/Cell/OTPTableViewCell.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ - (void)updateUI{
6161
if (!_passwordLabel) {
6262
_passwordLabel = [UILabel new];
6363
_passwordLabel.font = [UIFont boldSystemFontOfSize:40];
64-
_passwordLabel.textColor = [UIColor orangeColor];
64+
_passwordLabel.textColor = [UIColor colorWithHexString:@"0x3bbd79"];
6565
[self.contentView addSubview:_passwordLabel];
6666
[_passwordLabel mas_makeConstraints:^(MASConstraintMaker *make) {
6767
make.centerY.equalTo(self.contentView);
@@ -131,7 +131,7 @@ - (void)updateUI{
131131
if (!_back_passwordLabel) {
132132
_back_passwordLabel = [UILabel new];
133133
_back_passwordLabel.font = [UIFont boldSystemFontOfSize:40];
134-
_back_passwordLabel.textColor = [UIColor blueColor];
134+
_back_passwordLabel.textColor = [UIColor colorWithHexString:@"0xE15957"];
135135
[self.contentView addSubview:_back_passwordLabel];
136136
[_back_passwordLabel mas_makeConstraints:^(MASConstraintMaker *make) {
137137
make.edges.equalTo(self.passwordLabel);

0 commit comments

Comments
 (0)