目次

プロパティ

編集中も選択可能にする

セパレータのスタイルを設定する

セパレータを表示しない

	self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

UIViewControllerで使う

トラブルシューティング

NSRangeExceptionが発生する

tableViewでinsertRowsAtIndexPathsとdeleteRowAtIndexPathsを実行。

		[self.tableView beginUpdates];
		[self.tableView insertRowsAtIndexPaths:insertPaths withRowAnimation:UITableViewRowAnimationTop];
		[self.tableView deleteRowsAtIndexPaths:deletePaths withRowAnimation:UITableViewRowAnimationNone];
		[self.tableView endUpdates];			

エラーが発生。

*** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[NSMutableIndexSet addIndexesInRange:]: Range {2147483647, 1} exceeds maximum index value of NSNotFound - 1'

エラーメッセージの意味が分かりづらいが、indexPathがおかしいことが原因だった。beginUpdateとendUpdateで囲んで実行する場合、追加・削除前に存在するセクション、行を指定してNSIndexPathをつくらないといけない。そこを間違えていないか確認する。


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS