Skip to content

Commit 2146a70

Browse files
committed
背景色
1 parent eca9ddb commit 2146a70

6 files changed

+11
-5
lines changed

Coding_iOS/Coding_iOS-Info.plist

+2-2
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>4.2</string>
20+
<string>4.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleURLTypes</key>
@@ -36,7 +36,7 @@
3636
</dict>
3737
</array>
3838
<key>CFBundleVersion</key>
39-
<string>4.2.201701201700</string>
39+
<string>4.3.201702171500</string>
4040
<key>ITSAppUsesNonExemptEncryption</key>
4141
<false/>
4242
<key>LSApplicationQueriesSchemes</key>

Coding_iOS/Controllers/NewProject/NewProjectTypeViewController.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ - (void)viewDidLoad {
2222

2323
self.tableView.tableFooterView = [UIView new];
2424
[self.tableView setSeparatorColor:[UIColor colorWithRGBHex:0xe5e5e5]];
25-
25+
self.tableView.backgroundColor = kColorTableSectionBg;
26+
2627
// 添加右上角按钮
2728
// UIButton *submitButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
2829
// [submitButton addTarget:self action:@selector(showHelpView) forControlEvents:UIControlEventTouchUpInside];

Coding_iOS/Controllers/NewProject/NewProjectViewController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ - (void)viewDidLoad {
4040
//
4141
self.tableView.tableFooterView = [UIView new];
4242
[self.tableView setSeparatorColor:[UIColor colorWithRGBHex:0xe5e5e5]];
43-
43+
self.tableView.backgroundColor = kColorTableSectionBg;
4444
//
4545
self.descTextView.placeholder = @"填写项目描述...";
4646

Coding_iOS/Controllers/ProjectSetting/ProjectAdvancedSettingViewController.m

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ - (void)viewDidLoad {
3232

3333
self.tableView.tableFooterView = [UIView new];
3434
[self.tableView setSeparatorColor:[UIColor colorWithRGBHex:0xe5e5e5]];
35+
self.tableView.backgroundColor = kColorTableSectionBg;
36+
3537
}
3638

3739
- (void)didReceiveMemoryWarning {

Coding_iOS/Controllers/ProjectSetting/ProjectSettingViewController.m

+2-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ - (void)viewDidLoad {
4040
//tabview
4141
self.tableView.tableFooterView = [UIView new];
4242
[self.tableView setSeparatorColor:[UIColor colorWithRGBHex:0xe5e5e5]];
43-
43+
self.tableView.backgroundColor = kColorTableSectionBg;
44+
4445
self.projectNameLabel.text = self.project.name;
4546

4647
//

Coding_iOS/Controllers/ProjectSetting/ProjectTransferSettingViewController.m

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ - (void)viewDidLoad {
3535
}
3636

3737
[self.tableView setSeparatorColor:[UIColor colorWithRGBHex:0xe5e5e5]];
38+
self.tableView.backgroundColor = kColorTableSectionBg;
39+
3840
[_userIconView doCircleFrame];
3941
[_transferBtn successStyle];
4042
_transferBtn.enabled = NO;

0 commit comments

Comments
 (0)