- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.selectionStyle = UITableViewCellSelectionStyleNone;
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
if(tableView==logTable)
{
lbl_description=[[UILabel alloc] init];
[cell.contentView addSubview:lbl_description];
lbl_description.backgroundColor = [UIColor clearColor];
lbl_description.textColor=[UIColor darkGrayColor];
lbl_description.font = [UIFont systemFontOfSize:18];
lbl_date=[[UILabel alloc] init];
[cell.contentView addSubview:lbl_date];
lbl_date.backgroundColor = [UIColor clearColor];
lbl_date.textColor=[UIColor lightGrayColor];
lbl_date.font = [UIFont systemFontOfSize:14];
lbl_description.frame=CGRectMake(10, 3, 300, 25);
lbl_date.frame=CGRectMake(10, 23, 300, 25);//left
lbl_description.text = [getName objectAtIndex:indexPath.row];
lbl_date.text=[getStartDate objectAtIndex:indexPath.row];
}
return cell;
}
UITable がオーバーラップし、リロードしようとすると、動的に更新されません。リロードにテーブルのリロードを使用しますが、それでも解決策が得られません。前もって感謝します..