|
|
@@ -400,7 +400,7 @@
|
|
|
view.backgroundColor= Color(160,160,160,0.1);
|
|
|
|
|
|
self.tableView.backgroundView=view;
|
|
|
-
|
|
|
+ self.tableView.backgroundColor = BGKJ_COLOR;
|
|
|
self.tableView.delegate = self;
|
|
|
self.tableView.dataSource = self;
|
|
|
[self.view addSubview:self.tableView];
|
|
|
@@ -435,10 +435,12 @@
|
|
|
_preTime =[[UILabel alloc]initWithFrame:CGRectMake(SCREEN_WIDTH-150, 0, 120, 45)];
|
|
|
_preTime.textAlignment = NSTextAlignmentRight;
|
|
|
_preTime.font = FONT_SIZE(14);
|
|
|
+ _preTime.textColor = [UIColor blackColor];
|
|
|
|
|
|
_legDistance =[[UILabel alloc]initWithFrame:CGRectMake(SCREEN_WIDTH-150, 0, 120, 45)];
|
|
|
_legDistance.textAlignment = NSTextAlignmentRight;
|
|
|
_legDistance.font = FONT_SIZE(14);
|
|
|
+ _legDistance.textColor = [UIColor blackColor];
|
|
|
|
|
|
_btn3=[UIButton buttonWithType:UIButtonTypeCustom];
|
|
|
_btn3.frame=CGRectMake(0,0,self_width,45);
|
|
|
@@ -582,7 +584,7 @@
|
|
|
static NSString *ID = @"status";
|
|
|
UITableViewCell * cell =[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:ID];
|
|
|
cell.selectionStyle=UITableViewCellSelectionStyleNone;
|
|
|
-
|
|
|
+ cell.contentView.backgroundColor = BGKJ_COLOR;
|
|
|
|
|
|
NSUserDefaults * user=[NSUserDefaults standardUserDefaults];
|
|
|
NSString * yeorno=[user objectForKey:ZIDONG_WAIQING];
|
|
|
@@ -590,6 +592,7 @@
|
|
|
UILabel * signLable = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 45)];
|
|
|
signLable.text = self.dataArr[indexPath.row];
|
|
|
signLable.font =FONT_SIZE(14);
|
|
|
+ signLable.textColor = [UIColor blackColor];
|
|
|
[cell.contentView addSubview:signLable];
|
|
|
|
|
|
[cell.contentView addSubview:_switch1];
|
|
|
@@ -628,6 +631,7 @@
|
|
|
UILabel * propertyDis = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 45)];
|
|
|
propertyDis.text =[NSString stringWithFormat:@"%@",self.dataArr[indexPath.row]];
|
|
|
propertyDis.font = FONT_SIZE(14);
|
|
|
+ propertyDis.textColor = [UIColor blackColor];
|
|
|
[cell.contentView addSubview:propertyDis];
|
|
|
if (_returnDistance.length!=0) {
|
|
|
_legDistance.text = [_returnDistance stringByAppendingString:@"m"];
|
|
|
@@ -655,6 +659,7 @@
|
|
|
UILabel * yuliushjian = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 45)];
|
|
|
yuliushjian.text = self.dataArr[indexPath.row];
|
|
|
yuliushjian.font = FONT_SIZE(14);
|
|
|
+ yuliushjian.textColor = [UIColor blackColor];
|
|
|
[cell.contentView addSubview:yuliushjian];
|
|
|
if (_returnTime.length!=0) {
|
|
|
_preTime.text = [_returnTime stringByAppendingString:@"分钟"];
|
|
|
@@ -681,6 +686,7 @@
|
|
|
UILabel * signLable = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 45)];
|
|
|
signLable.text = self.dataArr[indexPath.row];
|
|
|
signLable.font = FONT_SIZE(14);
|
|
|
+ signLable.textColor = [UIColor blackColor];
|
|
|
[cell.contentView addSubview:signLable];
|
|
|
|
|
|
[cell.contentView addSubview:_switch2];
|
|
|
@@ -699,6 +705,7 @@
|
|
|
UILabel * faceLable = [[UILabel alloc]initWithFrame:CGRectMake(10, 0, 150, 45)];
|
|
|
faceLable.text = self.dataArr[indexPath.row];
|
|
|
faceLable.font = FONT_SIZE(14);
|
|
|
+ faceLable.textColor = [UIColor blackColor];
|
|
|
[cell.contentView addSubview:faceLable];
|
|
|
|
|
|
[cell.contentView addSubview:_switch3];
|