Explorar el Código

Dropbox: set presentation style once after creation of view controller

Gleb Pinigin hace 12 años
padre
commit
ec16e12147

+ 2 - 0
AspenProject/VLCDropboxTableViewController.m

@@ -41,6 +41,8 @@
 {
     [super viewDidLoad];
 
+    self.modalPresentationStyle = UIModalPresentationFormSheet;
+
     _dropboxController = [[VLCDropboxController alloc] init];
     _dropboxController.delegate = self;
 

+ 0 - 3
AspenProject/VLCMenuViewController.m

@@ -184,9 +184,6 @@
 - (IBAction)showDropbox:(id)sender
 {
     VLCAppDelegate *appDelegate = [UIApplication sharedApplication].delegate;
-
-    appDelegate.dropboxTableViewController.modalPresentationStyle = UIModalPresentationFormSheet;
-
     [self _presentViewController:appDelegate.dropboxTableViewController];
 }