Skip to content

Commit b8b248d

Browse files
committed
改颜色、该图片
1 parent ca2905b commit b8b248d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+19
-106
lines changed

Coding_iOS/.DS_Store

0 Bytes
Binary file not shown.

Coding_iOS/AppDelegate.m

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ - (void)setupLoginViewController{
234234

235235
- (void)setupIntroductionViewController{
236236
IntroductionViewController *introductionVC = [[IntroductionViewController alloc] init];
237-
// [self.window setRootViewController:[[BaseNavigationController alloc] initWithRootViewController:introductionVC]];
238237
[self.window setRootViewController:introductionVC];
239238
}
240239

@@ -247,7 +246,6 @@ - (void)setupTabViewController{
247246

248247
- (void)customizeInterface {
249248
//设置Nav的背景色和title色
250-
251249
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance];
252250
[navigationBarAppearance setBackgroundImage:[UIImage imageWithColor:[NSObject baseURLStrIsProduction]? kColorNavBG: kColorBrandGreen] forBarMetrics:UIBarMetricsDefault];
253251
[navigationBarAppearance setTintColor:kColorBrandGreen];//返回按钮的箭头颜色

Coding_iOS/Controllers/AddMDCommentViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ @implementation AddMDCommentViewController
2929
- (void)viewDidLoad {
3030
[super viewDidLoad];
3131
// Do any additional setup after loading the view.
32+
self.view.backgroundColor = kColorTableBG;
3233
if (!_segmentedControl) {
3334
_segmentedControl = ({
3435
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"编辑", @"预览"]];

Coding_iOS/Controllers/CodeViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ + (CodeViewController *)codeVCWithProject:(Project *)project andCodeFile:(CodeFi
3131
- (void)viewDidLoad {
3232
[super viewDidLoad];
3333
// Do any additional setup after loading the view.
34+
self.view.backgroundColor = kColorTableBG;
3435
self.title = self.isReadMe? @"README": [[_myCodeFile.path componentsSeparatedByString:@"/"] lastObject];
3536

3637
{

Coding_iOS/Controllers/ConversationViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ - (void)viewDidLoad
4848
// 添加myTableView
4949
_myTableView = ({
5050
UITableView *tableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
51-
tableView.backgroundColor = [UIColor clearColor];
51+
tableView.backgroundColor = kColorTableBG;
5252
tableView.dataSource = self;
5353
tableView.delegate = self;
5454
tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

Coding_iOS/Controllers/EditCodeViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ @implementation EditCodeViewController
2727
- (void)viewDidLoad {
2828
[super viewDidLoad];
2929
// Do any additional setup after loading the view.
30+
self.view.backgroundColor = kColorTableBG;
3031
if (!_segmentedControl) {
3132
_segmentedControl = ({
3233
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"编辑", @"预览"]];

Coding_iOS/Controllers/EditTopicViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ - (void)viewDidLoad
4949
{
5050
[super viewDidLoad];
5151
// Do any additional setup after loading the view.
52-
52+
self.view.backgroundColor = kColorTableBG;
5353
if (!_segmentedControl) {
5454
_segmentedControl = ({
5555
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"编辑", @"预览"]];

Coding_iOS/Controllers/FileEditViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ @implementation FileEditViewController
2929
- (void)viewDidLoad {
3030
[super viewDidLoad];
3131
// Do any additional setup after loading the view from its nib.
32+
self.view.backgroundColor = kColorTableBG;
3233
[self requestFileContent];
3334
}
3435

Coding_iOS/Controllers/ProjectTweetSendViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ @implementation ProjectTweetSendViewController
2828
- (void)viewDidLoad {
2929
[super viewDidLoad];
3030
// Do any additional setup after loading the view.
31+
self.view.backgroundColor = kColorTableBG;
3132
if (!_segmentedControl) {
3233
_segmentedControl = ({
3334
UISegmentedControl *segmentedControl = [[UISegmentedControl alloc] initWithItems:@[@"编辑", @"预览"]];

Coding_iOS/Controllers/RootControllers/BaseViewController.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ - (void)viewWillDisappear:(BOOL)animated
8080

8181
- (void)viewDidLoad{
8282
[super viewDidLoad];
83-
self.view.backgroundColor = kColorTableBG;
83+
// self.view.backgroundColor = kColorTableBG;
84+
self.view.backgroundColor = kColorTableSectionBg;
8485

8586
if (self.interfaceOrientation != UIInterfaceOrientationPortrait
8687
&& !([self supportedInterfaceOrientations] & UIInterfaceOrientationMaskLandscapeLeft)) {

0 commit comments

Comments
 (0)