hachinoBlog

hachinobuのエンジニアライフ

2013-05-01から1ヶ月間の記事一覧

TableViewで特定のセルだけ編集モードにしない方法

canMoveRowAtIndexPathメソッドでセルを特定して判定してやる - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{ //セルの取得 UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath]; if (取得…

CoreData: The fetched object at index x has an out of order section name xxxxxx. Objects must be sorted by section name

CoreDataを使用したコードでNSFetchedResultsControllerを作成する際に 下記コードのようにsectionNameKeyPathにEntityモデルのカラムを連結した値をセットして実行したら - (NSFetchedResultsController *)fetchedResultsController { if (_fetchedResultsC…