0
私の前のスレッドはNeed Help Adding User's Text To NSArrayです。アレイを編集可能、移動可能、ディスクに保存する必要があります
UIViewTableで配列の編集、削除、および移動ボタンを有効にしたいとします。
ViewControllerには、デフォルトでコメントアウトされたメソッドがありますが、どのメソッドとその使用方法がわかりません。
// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the specified item to be editable.
return YES;
}
// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}
// Override to support rearranging the table view.
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath
{
}
// Override to support conditional rearranging of the table view.
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath
{
// Return NO if you do not want the item to be re-orderable.
return YES;
}
これをチェックアウトしようとして感謝 –
ちょっとuは任意のヘルプは、私はuのために利用できるようになります返信してくださいしたいですかを助けると思うリンク
を見ます.... – rithik
大丈夫、ありがとう。右のナビゲーションバーには編集/完了ボタンがあり、左のナビゲーションバーには挿入ボタンがありますので、実際はちょっと混乱しています。どのメソッドをコメント解除するか、この作業を行うために追加する必要がありますか?このチュートリアルは、あなたが一から始めるために混乱します。 –