2

テーブルビューをクリックするとチェックマークが追加され、2番目のセルをクリックすると古いチェックが削除され、正常に動作するようになりました。私の質問は、テーブルビューがいつ古いチェックマークがセルに表示されるはずです。ありがとう

#import "mapMenuVC.h"
#import "ViewController.h"
#import "AppDelegate.h"



@interface mapMenuVC ()

@end

@implementation mapMenuVC
@synthesize checkedIndexPath;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];







    // Do any additional setup after loading the view from its nib.
    dataArray = [[NSMutableArray alloc]initWithObjects:@"Street Map",@"Satellite View",@"Hybird", nil];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

    return [dataArray count];
}


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

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell =
    [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                      reuseIdentifier:CellIdentifier];
    }
    if([checkedIndexPath isEqual:indexPath])
    {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }
    else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }
    cell.textLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:16.0];
    cell.textLabel.text = [dataArray objectAtIndex:[indexPath row]];
    return cell;

}




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


    if(self.checkedIndexPath)
    {
        UITableViewCell* uncheckCell = [tableView
                                        cellForRowAtIndexPath:self.checkedIndexPath];
        uncheckCell.accessoryType = UITableViewCellAccessoryNone;
    }
    if([self.checkedIndexPath isEqual:indexPath])
    {
        self.checkedIndexPath = nil;
    }
    else
    {
        UITableViewCell* cell = [tableView cellForRowAtIndexPath:indexPath];
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
        self.checkedIndexPath = indexPath;
    }

    switch (indexPath.row) {
        case 0: {



            [APPDELEGATE.viewController.myMapView setMapType:MKMapTypeStandard];
            [APPDELEGATE.viewController.popoverController dismissPopoverAnimated:YES];
            break;
        }
        case 1:
        {

            [APPDELEGATE.viewController.myMapView setMapType:MKMapTypeSatellite];
            [APPDELEGATE.viewController.popoverController dismissPopoverAnimated:YES];

            break;

        }
        case 2:

        {
             [APPDELEGATE.viewController.myMapView setMapType:MKMapTypeHybrid];
            [APPDELEGATE.viewController.popoverController dismissPopoverAnimated:YES];
            break;
        }

        default:
            break;
    }

}


- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
4

3 に答える 3

2

以下の手順に従ってください

TableViewDidSelectRowAtIndexPath で

 [[NSUserDefaults standardUserDefaults] setInteger:indexPath.row forKey:@"Checked"];
 [[NSUserDefaults standardUserDefaults] synchronize];

現在、CellForRowAtIndexPath で

if(indexPath.row == [[NSUserDefaults standardUserDefaults]integerForKey:@"Checked"])
{
    cell.accessoryType = UITableViewCellAccessoryCheckmark;
}
else
{
    cell.accessoryType = UITableViewCellAccessoryNone;
}

選択した最後の値のみにチェックマークを付けました

于 2012-11-26T07:09:36.670 に答える
1

最後にチェックした行のインデックスを保存して、次にビュー コントローラを起動したときにその値をロードできるようにする必要があります。セクションが 1 つしかないように見えるので、行インデックスを保存 (および復元) するだけです。NSUserDefaultsこの NSInteger 値を格納するのに適した場所です。新しい選択が行われるたびに行インデックスを保存できます。ビュー コントローラのviewDidLoadメソッドで現在の値を読み込むことができます。

于 2012-11-26T07:03:55.137 に答える
1

データを保存し、そのクラスを使用した時間をリロードし、データを正しく効率的に復元する別のクラスを使用できます。

于 2012-11-26T07:04:44.753 に答える