Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
遅延後にテーブルビューの選択を解除する方法を誰かが知っているかどうか疑問に思っていましたか?
deselectRowAtIndexPathメソッドを使用しています。選択を解除する前に、ハイライトを一瞬表示させたいだけです。
deselectRowAtIndexPath
ありがとう!
行をタップし、ハイライトを表示し、ハイライトが消える場合は、次のことができます。
のdidSelectRowAtIndexPath
didSelectRowAtIndexPath
//after you do whatever your doing when a row is selected UITableViewCell *cell [tableView cellForRowAtIndexPath:indexPath]; [cell setSelected:NO];
私があなたを誤解していなければ、これはあなたが探している効果を生み出します.