上のスクリーンショットでは、セルをクリックして手動で選択しましたが、デフォルトですべてのセルを編集用に選択したいと考えています。
質問する
93 次
1 に答える
3
このコードを使用できます....
for(int i=0; i<[array count]; i++)
{
NSIndexPath *indexP = [NSIndexPath indexPathForRow:i inSection:0];
[tblView selectRowAtIndexPath:indexP animated:NO scrollPosition:UITableViewScrollPositionNone];
[self tableView:tblView didSelectRowAtIndexPath:indexP];
}
tblView
あなたの はどこですかtableView
。
于 2012-10-06T10:24:33.817 に答える