iOS 中使用 MVVM,复杂的 Cell 的 ViewModel 应该如何去写
1个回答
2017-08-11
展开全部
1、先把Cell的头文件import进来2、[tableview_mainregisterNib:[UINibnibWithNibName:@"UserCallDealTableViewCell"bundle:nil]forCellReuseIdentifier:@"UserCallDealTableViewCellMark"];使用这个方法注册自定义Celltableview_main就是当前tableview实力化对象,然后UserCallDealTableViewCell这个字符串就是xib的名称,UserCallDealTableViewCellMark是重用机制的标记,配合等一下的代理方法使用3、最后在代理方法控制自定义cell-(UITableViewCell*)tableView:(UITableView*)tableViewcellForRowAtIndexPath:(NSIndexPath*)indexPath{NSString*identification=@"UserCallDealTableViewCellMark";UserCallDealTableViewCell*cell=[tableview_maindequeueReusableCellWithIdentifier:identification];if(cell!=nil){NSDictionary*dict_tmp=arry_dataSource[indexPath.row];cell->label_doctor_name.text=dict_tmp[@"doctorName"];cell->label_hosptial.text=dict_tmp[@"hospitalName"];if([dict_tmp[@"sstatus"]isEqualToString:@"S"]){cell->label_status.text=@"预约成功";}else{cell->label_status.text=@"预约失败";}NSString*string_date=@{@"0":@"上午",@"1":@"下午"}[dict_tmp[@"timeq"]];NSDateFormatter*formatter=[[NSDateFormatteralloc]init];[formattersetDateFormat:@"yyyy-MM-dd"];NSDate*date_tmp=[formatterdateFromString:dict_tmp[@"date"]];[formattersetDateFormat:[NSStringstringWithFormat:@"MM月dd日EEEE%@mm:HH",string_date]];cell->label_info.text=[formatterstringFromDate:date_tmp];returncell;}return[UITableViewCellnew];//这个地方我建议不要返回nil因为可能会导致崩溃}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询