|
@@ -8,6 +8,7 @@
|
|
|
|
|
|
|
|
#import "StaticModelistViewController.h"
|
|
#import "StaticModelistViewController.h"
|
|
|
#import "StaticModeTableViewCell.h"
|
|
#import "StaticModeTableViewCell.h"
|
|
|
|
|
+#import "Constant.h"
|
|
|
|
|
|
|
|
@interface StaticModelistViewController ()
|
|
@interface StaticModelistViewController ()
|
|
|
|
|
|
|
@@ -77,7 +78,9 @@
|
|
|
cell.textLabel.text = item[@"name"];
|
|
cell.textLabel.text = item[@"name"];
|
|
|
cell.detailTextLabel.text = item[@"detail"];
|
|
cell.detailTextLabel.text = item[@"detail"];
|
|
|
cell.detailTextLabel.textColor = [UIColor grayColor];
|
|
cell.detailTextLabel.textColor = [UIColor grayColor];
|
|
|
- cell.imageView.image = [UIImage imageNamed:item[@"icon"]];
|
|
|
|
|
|
|
+ cell.imageView.tintColor=UIColorFromRGB(0x1e7ffb);
|
|
|
|
|
+ cell.imageView.image = [[UIImage imageNamed:item[@"icon"]] imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
|
|
|
|
|
+
|
|
|
// RAModel *model = self.modelist[indexPath.row];//[self.modeArray objectAtIndex:indexPath.row];
|
|
// RAModel *model = self.modelist[indexPath.row];//[self.modeArray objectAtIndex:indexPath.row];
|
|
|
|
|
|
|
|
//[cell setModeinfo:[self.modelist[indexPath.row] mutableCopy]];
|
|
//[cell setModeinfo:[self.modelist[indexPath.row] mutableCopy]];
|