|
|
@@ -141,7 +141,7 @@
|
|
|
|
|
|
cell.snLabel.text = aciModel.sn;
|
|
|
cell.ccnLabel.text = aciModel.hbccn;
|
|
|
- cell.logLabel.text = aciModel.log;
|
|
|
+ cell.logLabel.text = [aciModel.log stringByReplacingOccurrencesOfString:@"," withString:@", "];
|
|
|
return cell;
|
|
|
}
|
|
|
break;
|
|
|
@@ -153,7 +153,7 @@
|
|
|
|
|
|
cell.snLabel.text=emanifestModel.sn;
|
|
|
cell.ccnLabel.text=emanifestModel.hbccn;
|
|
|
- cell.logLabel.text = emanifestModel.log;
|
|
|
+ cell.logLabel.text = [emanifestModel.log stringByReplacingOccurrencesOfString:@"," withString:@", "];
|
|
|
|
|
|
|
|
|
|
|
|
@@ -167,7 +167,7 @@
|
|
|
|
|
|
cell.bolLabel.text=isfModel.bol;
|
|
|
cell.snLabel.text=isfModel.sn;
|
|
|
- cell.logLabel.text=isfModel.log;
|
|
|
+ cell.logLabel.text=[isfModel.log stringByReplacingOccurrencesOfString:@"," withString:@", "];
|
|
|
|
|
|
|
|
|
return cell;
|
|
|
@@ -181,7 +181,7 @@
|
|
|
|
|
|
cell.hbolLabel.text=acem1Model.hbol;
|
|
|
cell.snLabel.text=acem1Model.sn;
|
|
|
- cell.logLabel.text=acem1Model.log;
|
|
|
+ cell.logLabel.text=[acem1Model.log stringByReplacingOccurrencesOfString:@"," withString:@", "];
|
|
|
|
|
|
// [[[[[[cell setHBOL:acem1Model.hbol] setMBOL:acem1Model.mbol] setIcon:acem1Model.icon] setPort:acem1Model.port] setTime:acem1Model.date] setLog:acem1Model.log];
|
|
|
//
|