まず、Objective Cを初めて使用することから始めたいと思います。これは、ObjectiveCで開発するのは初めてです。なんらかの理由で、 (オブジェクトが含まれている)NSArray
スルーからオブジェクトを削除する方法に行き詰まりましmy tableview
た。いくつかの異なることを試しましたが、私は少し立ち往生しているようです...以下のコードで何をpuしますか?
bookmarks.m
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath]withRowAnimation:YES];
[tableView reloadData];
}
Bookmarks.h
#import <UIKit/UIKit.h>
#import "ShowTaskViewController.h"
#import "Bookmark.h"
@interface BookmarksViewController : UITableViewController <UITableViewDelegate,UITableViewDataSource>
{
NSArray *bookmarks;
}
@property (nonatomic, retain) NSArray *bookmarks;
@end