Browse Source

Fix iOS 11 (contentView)

Marino Faggiana 7 years ago
parent
commit
a7ae4dc1fb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      iOSClient/Main/CCMain.m

+ 2 - 2
iOSClient/Main/CCMain.m

@@ -4557,7 +4557,7 @@
     titleLabel.text = titleSection;
     titleLabel.autoresizingMask = UIViewAutoresizingFlexibleWidth;
 
-    [visualEffectView addSubview:titleLabel];
+    [visualEffectView.contentView addSubview:titleLabel];
     
     // Elements
     UILabel *elementLabel= [[UILabel alloc]initWithFrame:CGRectMake(shift, -12, 0, 44)];
@@ -4574,7 +4574,7 @@
     if (rowsCount == 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount,  NSLocalizedString(@"_element_",nil)];
     if (rowsCount > 1) elementLabel.text = [NSString stringWithFormat:@"%lu %@", (unsigned long)rowsCount,  NSLocalizedString(@"_elements_",nil)];
     
-    [visualEffectView addSubview:elementLabel];
+    [visualEffectView.contentView addSubview:elementLabel];
     
     return visualEffectView;
 }