我有两个视图控制器,并且TypeViewController
包含一个可以通过按 收藏的类型。按下按钮将类型保存到数组并将该数组保存到文件中。打开该文件并使用其数组填充 UITableView,我在它的方法中执行此操作,然后在最后添加以确保将填充 tableView。但是,我注意到当我尝试取消收藏某个类型(按再次)时,它不会从 tableView 中删除。我不知道我应该怎么做!如何删除 tableView 单元格?任何输入将不胜感激,如果我需要提供任何其他细节,请告诉我!谢谢=DFavoritesViewController
TypeViewController
UIBarButtonItem
FavoritesViewController
ViewDidLoad
[self.tableView reloadData]
UIBarButtonItem
这是一些代码:
来自TypeViewController
:
//When The UIBarButtonItem is pressed
-(IBAction)favoriteTheSubject:(id)sender{
//Open the saved array
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *arrayFileName = [documentsDirectory stringByAppendingPathComponent:@"favoritedTypes.dat"];
NSMutableArray *favoritedTypeInfo = [[NSMutableArray alloc] initWithContentsOfFile: arrayFileName];
//If the array file does not exist, set the array
if(favoritedTypeInfo == nil)
{
NSLog(@"Didn't exist in SecondaryDetailVC");
favoritedTypeInfo = [[NSMutableArray alloc] init];
}
//Favorite item
if ([self.navigationItem.rightBarButtonItem.image isEqual:[UIImage imageNamed:@"FavButton.png" ]]) { //FavButton.png is the unselected favorite button
[self.navigationItem.rightBarButtonItem setImage:[UIImage imageNamed:@"FavButtonSelected.png"]];//Change the image
//Add the type
[favoritedTypeInfo addObject:typeOfObject];
[favoritedTypeInfo addObject:priceOfType];
NSLog(@"Added Item");
[favoritedTypeInfo writeToFile:arrayFileName atomically:YES];
}
else{ //Unfavorite Item
[self.navigationItem.rightBarButtonItem setImage:[UIImage imageNamed:@"FavButton.png"]];
//Create an array to insert all the values to remove
NSMutableArray *removeArray = [[NSMutableArray alloc]init];
for (int i = 0; i < [favoritedTypeInfo count]; i++) {
NSString *sameTitle =favoritedTypeInfo[i];
if ([self.tableTitle isEqualToString:sameTitle]) {
//Add typeOfObject and priceOfType to removeArray
[removeArray addObject:favoritedTypeInfo[i]];
[removeArray addObject:favoritedTypeInfo[i+1]];
NSLog(@"Removed %@", removeArray[i]);
}
}
//Remove objects
[favoritedTypeInfo removeObjectsInArray:removeArray];
[favoritedTypeInfo writeToFile:arrayFileName atomically:YES];
}
}
来自FavoriteViewController
:
-(void)viewWillAppear:(BOOL)animated{
[super viewWillAppear:animated];
//Open the array from file
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *arrayFileName = [documentsDirectory stringByAppendingPathComponent:@"favoritedTypes.dat"];
NSMutableArray *savedArray = [[NSMutableArray alloc] initWithContentsOfFile: arrayFileName];
if(savedArray == nil)
{
NSLog(@"Couldn't Open Favorites Array");
}else{
for (int i = 0; i < [savedArray count]; i++) {
if (i%2 == 0) {
//Array for favorited typesOfObject
[self.favoritedTypesInfo addObject:savedArray[i]];
} else if (i%2 == 1){
//Array for favorited priceOftypes
[self.favoritedPriceTypes addObject:savedArray[i]];
}
}
//Test to see if there are duplicate objects in arrays
int countFavorited = 0;
for (int i = 0; i < [self.favoritedTypesInfo count]; i++) {
for (int k = 0; k < [self.favoritedTypesInfo count]; k++) {
NSString *kString = [self.favoritedTypesInfo objectAtIndex:k];
NSString *iString = [self.favoritedTypesInfo objectAtIndex:i];
if ([kString isEqualToString:iString] && kString.length == iString.length) {
NSLog(@"%@ : %@", kString, iString);
countFavorited += 1;
if (countFavorited > 1) {
[self.favoritedTypesInfo removeObjectAtIndex:k];
[self.favoritedPriceTypes removeObjectAtIndex:k];
countFavorited = 0;
}
}
}
}
}
[self.tableView reloadData];
}