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.
「UITable」ビューでスライドを削除する機能を無効にする方法はありますか? データベースの内容を表示するテーブルがありますが、ユーザーが行を削除できるようにしたくありません。
ViewControllerこのメソッドを(または他のTableView'sデータソース)に実装するだけです
ViewController
TableView's
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath { return NO; }