Răsfoiți Sursa

1.修改iOS Apex Mobile静态列表字体随系统字体大小设置。

Pen Li 8 ani în urmă
părinte
comite
7fc101c84b
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  1. 3 0
      Apex Mobile/Apex Mobile/StaticModelistViewController.m

+ 3 - 0
Apex Mobile/Apex Mobile/StaticModelistViewController.m

@@ -104,9 +104,12 @@
         cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
         
     }
+    
     NSDictionary* item = self.modelist[indexPath.section];
     cell.textLabel.text = item[@"name"];
+    cell.textLabel.font = [UIFont systemFontOfSize:17.0f];
     cell.detailTextLabel.text = item[@"detail"];
+    cell.detailTextLabel.font = [UIFont systemFontOfSize:15.0f];
     cell.detailTextLabel.textColor = [UIColor grayColor];
 //    cell.imageView.tintColor=UIColorFromRGB(0x1e7ffb);
     cell.imageView.image = [[UIImage imageNamed:item[@"icon"]] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];