|
|
@@ -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];
|