瀏覽代碼

clouds : set tableview background to VLCDarkBackgroundColor

Pierre SAGASPE 10 年之前
父節點
當前提交
8bd6653cc2
共有 2 個文件被更改,包括 2 次插入0 次删除
  1. 1 0
      Sources/VLCCloudServicesTableViewController.m
  2. 1 0
      Sources/VLCCloudStorageTableViewController.m

+ 1 - 0
Sources/VLCCloudServicesTableViewController.m

@@ -44,6 +44,7 @@
     [self.tableView registerNib:[UINib nibWithNibName:@"VLCCloudServiceCell" bundle:nil] forCellReuseIdentifier:@"CloudServiceCell"];
     self.navigationItem.leftBarButtonItem = [UIBarButtonItem themedRevealMenuButtonWithTarget:self andSelector:@selector(goBack)];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
+    self.tableView.backgroundColor = [UIColor VLCDarkBackgroundColor];
 
     self.dropboxTableViewController = [[VLCDropboxTableViewController alloc] initWithNibName:@"VLCCloudStorageTableViewController" bundle:nil];
     self.googleDriveTableViewController = [[VLCGoogleDriveTableViewController alloc] initWithNibName:@"VLCCloudStorageTableViewController" bundle:nil];

+ 1 - 0
Sources/VLCCloudStorageTableViewController.m

@@ -47,6 +47,7 @@
 
     self.tableView.rowHeight = [VLCCloudStorageTableViewCell heightOfCell];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
+    self.tableView.backgroundColor = [UIColor VLCDarkBackgroundColor];
     self.view.backgroundColor = [UIColor VLCDarkBackgroundColor];
 
     _progressView = [VLCProgressView new];