more ui stuff
This commit is contained in:
parent
9db76badd9
commit
068204eab8
2 changed files with 7 additions and 1 deletions
Binary file not shown.
|
@ -317,7 +317,6 @@ NSString *backupNameSelected;
|
|||
self.navigationItem._largeTitleAccessoryView = createBackupButton;
|
||||
// Do any additional setup after loading the view.
|
||||
|
||||
|
||||
selectedBackupPickerView.delegate=self;
|
||||
selectedBackupPickerView.dataSource=self;
|
||||
|
||||
|
@ -327,6 +326,13 @@ NSString *backupNameSelected;
|
|||
|
||||
}
|
||||
|
||||
- (void)viewDidLayoutSubviews {
|
||||
[super viewDidLayoutSubviews];
|
||||
|
||||
[[selectedBackupPickerView.subviews objectAtIndex:1] setBackgroundColor:[UIColor colorWithWhite:25.f/225.f alpha:0.5]];
|
||||
[[selectedBackupPickerView.subviews objectAtIndex:2] setBackgroundColor:[UIColor colorWithWhite:25.f/225.f alpha:0.5]];
|
||||
}
|
||||
|
||||
-(void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{
|
||||
if (_backupFolderArray == nil) return;
|
||||
|
||||
|
|
Reference in a new issue