Browse Source

iOS: Fix wrong super call

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
Soomin Lee 8 years ago
parent
commit
9191c017b2
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Sources/LocalNetworkConnectivity/VLCNetworkListViewController.m

+ 2 - 1
Sources/LocalNetworkConnectivity/VLCNetworkListViewController.m

@@ -92,8 +92,9 @@ NSString *VLCNetworkListCellIdentifier = @"VLCNetworkListCellIdentifier";
 - (void)viewDidAppear:(BOOL)animated {
     [super viewDidAppear:animated];
 }
+
 - (void)viewWillDisappear:(BOOL)animated {
-    [super viewDidDisappear:animated];
+    [super viewWillDisappear:animated];
 }
 
 - (BOOL)shouldAutorotate