Marino Faggiana 7 yıl önce
ebeveyn
işleme
d881e00546
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      iOSClient/Main/CCMain.m

+ 2 - 2
iOSClient/Main/CCMain.m

@@ -536,16 +536,16 @@
 - (void)createRefreshControl
 {
     _refreshControl = [UIRefreshControl new];
-    [_refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
+    
     if (@available(iOS 11.0, *)) {
         [self.tableView setRefreshControl:_refreshControl];
         _refreshControl.tintColor = [UIColor whiteColor];
-
     } else {
         _refreshControl.tintColor = [NCBrandColor sharedInstance].brand;
         _refreshControl.backgroundColor = [UIColor colorWithRed:235.0/255.0 green:235.0/255.0 blue:235.0/255.0 alpha:1.0];
         [self setRefreshControl:_refreshControl];
     }
+    [_refreshControl addTarget:self action:@selector(refreshControlTarget) forControlEvents:UIControlEventValueChanged];
 }
 
 - (void)deleteRefreshControl