1

エリア内の多数のカフェを一覧表示する既存の UITableView があります。各カフェのデータは、MySQL データベースから取得されます。ユーザーがカフェ (セル) をクリックすると、ユーザーは詳細ビューに移動します。現在、ユーザーは各セルの星の画像をクリックしてカフェを「お気に入り」にすることができます (これにより、お気に入りのセルが FavoritesTableView に追加されます)。ただし、ユーザーが DetailView からも FavoritesTableView にカフェを追加できるようにしたい (つまり、DetailView からカフェを「お気に入り」にする)。これをどのように実装するか知っている人はいますか?

現在、DetailView.m (カフェの詳細)にスター ボタンを配置しています。

- (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 (カフェ テーブルビュー)

- (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];
        }

「チェック済み」ボタンで選択したセルをUITableViewからFavoritesTableViewに追加するために、これに追加するコードの種類がわかりません。

これが理にかなっていることを願っています。何か案は?

4

2 に答える 2

0

「お気に入り」の状態をグローバル変数/シングルトンに保存し、必要に応じて取得できます。

これにより、テーブル ビューの割り当てが解除されても、セルの状態が失われることはありません。

于 2013-08-04T11:05:22.660 に答える
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 オブジェクトのお気に入りフラグを設定します。これにより、テーブル ビューのひずみ詳細オブジェクトも更新されます。詳細ビューへの参照 (ポインターとも呼ばれます) を渡すため、このように機能します。つまり、両方のひずみ詳細オブジェクトはオブジェクトではなく、メモリ アドレスへのポインターです。いずれかのひずみ詳細を更新すると、両方のひずみ詳細のメモリ アドレスが変更されます。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 に答える