2

loadViewtheos (ジェイルブレイク) を使用してアプリを作成しており、RootViewController.mm ファイルのメソッドでUITableView を作成しました。

- (void)loadView {
    self.view = [[[UIView alloc] initWithFrame:[[UIScreen mainScreen] applicationFrame]] autorelease];
    self.view.backgroundColor = [UIColor redColor];



    NSError * error;
    NSArray * directoryContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:@"/var/mobile/Library/BannerImage" error:&error];

    countries = [NSDictionary dictionaryWithObject:directoryContents forKey:@"Themes"];
   mainTableView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 320, 480) style:UITableViewStyleGrouped];

    [mainTableView setDataSource:self];
    [mainTableView setDelegate:self];
    [self.view addSubview:mainTableView];
}

そして私のコードの残りの部分:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [countries count];
}

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [[countries allKeys] objectAtIndex:section];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSString *continent = [self tableView:tableView titleForHeaderInSection:section];
    return [[countries valueForKey:continent] 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];
    }
        // Configure the cell...

    NSString *continent = [self tableView:tableView titleForHeaderInSection:indexPath.section];
    NSString *country = [[countries valueForKey:continent] objectAtIndex:indexPath.row];

    cell.textLabel.text = country;

    cell.accessoryType = UITableViewCellAccessoryNone;
    if([self.checkedIndexPath isEqual:indexPath])
    {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
    }
    else
    {
        cell.accessoryType = UITableViewCellAccessoryNone;
    }
    return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{


    UITableViewCell *object = [tableView cellForRowAtIndexPath:indexPath];
    [object setSelected:NO animated:YES];
    NSString *selectedTheme = [[object textLabel] text];

    NSDictionary *plistFile = [NSDictionary dictionaryWithObject:selectedTheme forKey:@"CurrentTheme"];
    [plistFile writeToFile:@"/Applications/BannerImage.app/CurrentTheme.plist" atomically:YES];

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

上にスクロールして下にスクロールしようとするとクラッシュし、[mainTableView reloadData] が呼び出されるとクラッシュします。どうすればこれを修正できますか? クラッシュログ

4

2 に答える 2

2

リリースされていたので、辞書を保持する必要があることがわかりました。だから代わりに

NSDictionary *countries;

これに変更

@property(nonatomic, retain) NSDictionary *countries;

@synthesize countries;

.mm ファイルで使用します

self.countries = [NSDictionary dictionaryWithObject:directoryContents forKey:@"Themes"];

それ以外の

countries = [NSDictionary dictionaryWithObject:directoryContents forKey:@"Themes"];
于 2013-04-12T20:06:52.203 に答える
0

こんにちは、国にデータがあり、「大陸」値キーが表示されているか、この行の前に dic にないかを確認してください

NSString *country = [[countries valueForKey:continent] objectAtIndex:indexPath.row];
于 2013-04-13T04:54:03.750 に答える