NSString *cellIdentifier = @"cellID";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (tableView==self.monthTableVW)
{
if (cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
cell.textLabel.text=[self.monthArr objectAtIndex:indexPath.row];
cell.backgroundColor=[ UIColor colorWithRed:224.0f/255.0f green:188.0f/255.0f blue:113.0f/255.0f alpha:0.5f];
}
if (tableView==self.attendanceTBVW)
{
customeCell *cell1=[[customeCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:cellIdentifier];
cell1=[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if(cell==nil)
{
NSArray *cellArr=[[NSBundle mainBundle]loadNibNamed:@"customeCell" owner:self options:nil];
cell=[cellArr objectAtIndex:0];
}
cell1.dateLbl.text=[self.monthArr objectAtIndex:indexPath.row];
}
return cell;
}
ドロップダウンメニューとして使用するテーブルビューが1つ必要です。もう1つは、customCellであるattendanceTBVWというデータを表示することです。私は1つの画面で2つのテーブルビューを使用しています.1つは平面で、もう1つはカスタムセルです。 1つだけが動作しています
を..thanks、I両方とも共通の式を試しましたが、その例外例外エラー –