- (void)viewDidLoad {
self.dataArray = [[NSMutableArray alloc]initWithObjects:@"医生您好,请问您最近有时间吗?",@"医生您好,请问您最近有时间吗?",@"医生您好,请问您最近有时间吗?",@"医生您好,请问您最近有时间吗?",@"医生您好,请问您最近有时间吗?", nil];
}
#pragma mark--UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return self.dataArray.count;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
return 60;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
static NSString *ID = @"InquiryCell";
XDInquiryRecordCell *cell = [tableView dequeueReusableCellWithIdentifier:ID ];
if (cell == nil) {
cell = [[XDInquiryRecordCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:ID];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
// cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
return cell;
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
return YES;
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
[self.dataArray removeObjectAtIndex:indexPath.row];
// Delete the row from the data source.
[_tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
}
- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
return @"删除";
}