Skip to content

Commit 4d3c97b

Browse files
committed
修改多选界面 status bar 颜色
1 parent 93af1ce commit 4d3c97b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Example/MessageDisplayExample/MessageDisplayExample/XHMessageRootViewController.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
#import "MultiSelectItem.h"
2121
#import "MultiSelectViewController.h"
22+
#import "XHBaseNavigationController.h"
2223

2324
@interface XHMessageRootViewController ()
2425

@@ -183,7 +184,7 @@ - (void)addContactForGroup
183184
MultiSelectViewController *vc = [[MultiSelectViewController alloc]init];
184185
vc.items = items;
185186

186-
UINavigationController *navVC = [[UINavigationController alloc]initWithRootViewController:vc];
187+
XHBaseNavigationController *navVC = [[XHBaseNavigationController alloc]initWithRootViewController:vc];
187188
[self.navigationController presentViewController:navVC animated:YES completion:nil];
188189
}
189190

Example/MessageDisplayExample/MultiSelectTableViewController/MultiSelect/MultiSelectViewController.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ - (void)viewDidLoad
5959
{
6060
[super viewDidLoad];
6161
// Do any additional setup after loading the view.
62+
6263
self.title = @"选择联系人";
6364
self.view.backgroundColor = [UIColor colorWithWhite:1.000 alpha:1.000];
6465
self.tableView.backgroundColor = [UIColor colorWithWhite:1.000 alpha:1.000];

0 commit comments

Comments
 (0)