私は、次のようなオプションがあります:一度 迅速** willSelectRowAtIndexPath **有効化および無効化オプション
持っていた
- なしに私は他のオプションを無効にし、オプションのいずれかが選択されている場合は無効にします。 私はこれがどれだけ除いて他の人を選択して頂きます
func tableView (tableView: UITableView, willSelectRowAtIndexPath indexPath: NSIndexPath) -> NSIndexPath? { // first 3 rows in any section should not be selectable if indexPath.row <= 1 { return nil } return indexPath }
を行っています。どうすれば私の要件を達成できるのですか?すべてのアイデアは本当にappericiatedされます。
ありがとうございました。
あなたの要件は何ですか?もっと説明していただけますか? –