1

I have an existing UITableView that lists a number of cafes in the area. The data for each cafe is being pulled from a MySQL database. When a user clicks on a cafe (cell), it brings a user to a detail view. Currently, users can "Favorite" a cafe by clicking on the star image in each cell (this adds the favorited cell to FavoritesTableView). However, I want users to be able to add a cafe to the FavoritesTableView from the DetailView as well (in other words, "favorite" a cafe from the DetailView). Does anyone know how I would implement this?

Right now, I have the star button in place in my DetailView.m (cafe details):

- (IBAction)buttonpressed:(UIButton *)fave {
    if (!checked) {
        [checkedButton setImage:[UIImage imageNamed:@"checked.png"] forState:UIControlStateNormal];
        checked = YES;

    }

    else if (checked) {
        [checkedButton setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
        checked = NO;
    }

}

ViewController.m (cafes tableview)

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    static NSString *strainTableIdentifier = @"StrainTableCell";

    StrainTableCell *cell = (StrainTableCell *)[tableView dequeueReusableCellWithIdentifier:strainTableIdentifier];
    if (cell == nil)


    cell = [[StrainTableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:strainTableIdentifier];

    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    cell.selectionStyle = UITableViewCellSelectionStyleBlue;



    NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"StrainTableCell" owner:self options:nil];
    cell = [nib objectAtIndex:0];

    if (tableView == self.searchDisplayController.searchResultsTableView) {
        NSLog(@"Using the search results");

        cell.titleLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Title"];
        cell.descriptionLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Description"];
        cell.ratingLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Rating"];
        cell.ailmentLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Ailment"];
        cell.actionLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Action"];
        cell.ingestLabel.text = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Ingestion"];

        NSLog(@"%@", searchResults);



    } else {
        NSLog(@"Using the FULL LIST!!");
        cell.titleLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Title"];
        cell.descriptionLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Description"];
        cell.ratingLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Rating"];
        cell.ailmentLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Ailment"];
        cell.actionLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Action"];
        cell.ingestLabel.text = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Ingestion"];

    }


    NSMutableDictionary *item = [Strains objectAtIndex:indexPath.row];
    cell.textLabel.text = [item objectForKey:@"text"];

    [item setObject:cell forKey:@"StrainTableCell"];
    BOOL checked = [[item objectForKey:@"checked"] boolValue];

    NSLog(@"%i",checked);
    UIImage *image = (checked) ? [UIImage   imageNamed:@"checked.png"] : [UIImage imageNamed:@"unchecked.png"];
    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    CGRect frame = CGRectMake(0.0, 0.0, image.size.width, image.size.height);
    button.frame = frame;
    [button setBackgroundImage:image forState:UIControlStateNormal];
    [button addTarget:self action:@selector(checkButtonTapped:event:)  forControlEvents:UIControlEventTouchUpInside];
    button.backgroundColor = [UIColor clearColor];
    cell.accessoryView = button;

    return cell;


}


- (void)checkButtonTapped:(id)sender event:(id)event
{
    NSLog(@"made it here and event is %@",event);

    NSSet *touches = [event allTouches];
    UITouch *touch = [touches anyObject];
    CGPoint currentTouchPosition = [touch locationInView:self.StrainTableView];
    NSIndexPath *  indexPath ;
    indexPath =  [self.StrainTableView indexPathForRowAtPoint: currentTouchPosition];
    NSLog(@"indexpath is below");
    NSLog(@"%@",indexPath);
    if (indexPath != Nil)
    {

        NSMutableDictionary *item = [Strains objectAtIndex:indexPath.row];
        BOOL isItChecked =  [[item objectForKey:@"checked"] boolValue];

NSMutableArray *quickArray = [[NSMutableArray alloc] initWithArray:Strains];
        [quickArray replaceObjectAtIndex:indexPath.row withObject:item];


        [item setObject:[NSNumber numberWithBool:!isItChecked] forKey:@"checked"];
        Strains = [quickArray copy];

 [StrainTableView reloadData];

    }

}

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {



        StrainDetailViewController *detailViewController = [[StrainDetailViewController alloc] initWithNibName:@"StrainDetailViewController" bundle:nil]; if ([searchResults count]) {

            detailViewController.title = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Title"];
            detailViewController.strainDetail = [searchResults objectAtIndex:indexPath.row];

        } else {

            detailViewController.title = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Title"];
            detailViewController.strainDetail = [Strains objectAtIndex:indexPath.row];
            NSLog(@"%@", Strains);
        }


        [self.navigationController pushViewController:detailViewController animated:YES];



        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    }


    - (void)viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear:animated];

        if ([[NSUserDefaults standardUserDefaults] objectForKey:@"strains"] != Nil) {


            NSData *dataSave = [[NSUserDefaults standardUserDefaults] objectForKey:@"strains"];
            Strains =  [NSKeyedUnarchiver unarchiveObjectWithData:dataSave];
        }


        if (favoritesArray == Nil) {
             favoritesArray = [[NSMutableSet alloc] init];   
        }



        if ([[NSUserDefaults standardUserDefaults] objectForKey:@"favorites"] != Nil) {


            NSData *dataSave = [[NSUserDefaults standardUserDefaults] objectForKey:@"favorites"];
            favoritesArray =  [NSKeyedUnarchiver unarchiveObjectWithData:dataSave];
        }

I'm just not sure what sort of code I would add to this in order to make the "Checked" button add the selected cell from UITableView to FavoritesTableView.

Hope this made sense. Any ideas?

4

2 回答 2

0

从可维护性的角度来看,我通常采用的方法可能不是最好的。但是,从实现的角度来看,这非常容易。我将对我的对象(在您的情况下为选定的表视图的对象)的引用传递给详细信息视图。从详细信息视图中,我可以通过切换标志来更新该对象。由于该对象与表格视图是同一个对象,因此更新它也会更新表格视图(您可能必须重绘表格视图单元格)。最后,我从详细信息视图更新数据库。

编辑

所以在你的代码中,它看起来像这样。

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    StrainDetailViewController *detailViewController = [[StrainDetailViewController alloc] initWithNibName:@"StrainDetailViewController" bundle:nil]; if ([searchResults count]) {

        detailViewController.title = [[searchResults objectAtIndex:indexPath.row] objectForKey:@"Title"];
        //YOU'RE ALREADY DOING IT :)
        detailViewController.strainDetail = [searchResults objectAtIndex:indexPath.row];

    } else {

        detailViewController.title = [[Strains objectAtIndex:indexPath.row] objectForKey:@"Title"];
        //YOU'RE ALREADY DOING IT :)
        detailViewController.strainDetail = [Strains objectAtIndex:indexPath.row];
        NSLog(@"%@", Strains);
    }

    [self.navigationController pushViewController:detailViewController animated:YES];
}

您已经发送了对详细信息视图的引用!这使事情变得容易。在您的详细信息视图中,只要有人喜欢某个菌株,就为该 strainDetail 对象设置最喜欢的标志。这也将更新 table view 中的 strainDetail 对象。它的工作原理是这样的,因为您将引用(也称为指针)传递给详细视图。换句话说,您的两个 strainDetail 对象都不是对象,而是指向内存地址的指针。如果您更新任一应变详细信息,则这两个应变详细信息的内存地址都会更改。不是 strainDetail 指针本身。这是进一步解释的链接 https://softwareengineering.stackexchange.com/questions/17898/whats-a-nice-explanation-for-pointers

所以你的细节视图处理程序看起来像这样

- (IBAction)buttonpressed:(UIButton *)fave {
    if (!checked) {
        [checkedButton setImage:[UIImage imageNamed:@"checked.png"] forState:UIControlStateNormal];
        checked = YES;

    }

    else if (checked) {
        [checkedButton setImage:[UIImage imageNamed:@"unchecked.png"] forState:UIControlStateNormal];
        checked = NO;
    }

    //updates in both the detail view and the table view
    BOOL isItChecked =  [[self.strainDetail objectForKey:@"checked"] boolValue];
    [self.strainDetail setObject:[NSNumber numberWithBool:checked] forKey:@"checked"];
}

我还建议创建一个 Strain 类来保存所有的应变数据。使用字典并不好玩,容易出错,而且要花很长时间才能弄清楚你需要什么键。

于 2013-08-04T17:47:37.507 回答
0

您可以将“最喜欢的”状态保存在全局变量/单例中,并在需要时检索它。

这样,即使您的表视图被释放,您也不会丢失其单元格的状态。

于 2013-08-04T11:05:22.660 回答