1

私はUITableview(グループ化)を使用しています。xib でのユーザー操作を無効にしました。しかし、1つのセルの相互作用を有効にしたいです。どうすればこれを有効にできますか? 私は[cell setUserInteractionEnabled:yes]動作していないものを使用しました。-tableView didselectrowindexpathが呼び出されていません。誰でも私に提案できますか。前もって感謝します

4

3 に答える 3

1
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    //Configure the cell

     if (indexPath.row == yourcell)
       cell.userInteractionEnabled = YES;
}

希望、これはあなたを助けるでしょう

于 2012-05-10T12:12:31.637 に答える
0

Xib でのユーザー インタラクションを有効にします。追加

if(indexPath.row != YOUR ROW NO)
    cell.userInteractionEnabled = NO;

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

それが役に立てば幸い。幸せなコーディング:)

于 2012-05-10T12:03:20.490 に答える