Browse Source

clouds : set tableview background to VLCDarkBackgroundColor

Pierre SAGASPE 10 years ago
parent
commit
8bd6653cc2

+ 1 - 0
Sources/VLCCloudServicesTableViewController.m

@@ -44,6 +44,7 @@
     [self.tableView registerNib:[UINib nibWithNibName:@"VLCCloudServiceCell" bundle:nil] forCellReuseIdentifier:@"CloudServiceCell"];
     [self.tableView registerNib:[UINib nibWithNibName:@"VLCCloudServiceCell" bundle:nil] forCellReuseIdentifier:@"CloudServiceCell"];
     self.navigationItem.leftBarButtonItem = [UIBarButtonItem themedRevealMenuButtonWithTarget:self andSelector:@selector(goBack)];
     self.navigationItem.leftBarButtonItem = [UIBarButtonItem themedRevealMenuButtonWithTarget:self andSelector:@selector(goBack)];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
+    self.tableView.backgroundColor = [UIColor VLCDarkBackgroundColor];
 
 
     self.dropboxTableViewController = [[VLCDropboxTableViewController alloc] initWithNibName:@"VLCCloudStorageTableViewController" bundle:nil];
     self.dropboxTableViewController = [[VLCDropboxTableViewController alloc] initWithNibName:@"VLCCloudStorageTableViewController" bundle:nil];
     self.googleDriveTableViewController = [[VLCGoogleDriveTableViewController 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.rowHeight = [VLCCloudStorageTableViewCell heightOfCell];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
     self.tableView.separatorColor = [UIColor VLCDarkBackgroundColor];
+    self.tableView.backgroundColor = [UIColor VLCDarkBackgroundColor];
     self.view.backgroundColor = [UIColor VLCDarkBackgroundColor];
     self.view.backgroundColor = [UIColor VLCDarkBackgroundColor];
 
 
     _progressView = [VLCProgressView new];
     _progressView = [VLCProgressView new];