我正在尝试创建一个名为HighscoresController的类,该类将NSObject子类化。当我以以下方式调用init方法时,在调试器GDB: Program received signal: "EXC_BAD_ACCESS"中出现错误。有谁知道为什么吗?我完全迷住了。

// Initialize the highscores controller
_highscoresController = [[HighscoresController alloc] init];


这是我的课程实现:

#import "HighscoresController.h"
#import "Constants.h"

@implementation HighscoresController

@synthesize highscoresList = _highscoresList;

- (id) init {

    self = [super init];

    _highscoresList = [[NSMutableArray alloc] initWithCapacity:kHighscoresListLength];
    int kMyListNumber = 0;

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"highscores.plist"];

    if ([[NSFileManager defaultManager] fileExistsAtPath:filePath]) { // if settings file exists
        NSArray *HighscoresListOfLists = [[NSArray alloc] initWithContentsOfFile:filePath];
        _highscoresList = [HighscoresListOfLists objectAtIndex:kMyListNumber];
        [HighscoresListOfLists release];
    } else { // if no highscores file, create a new one
        NSMutableArray *array = [[NSMutableArray alloc] init];
        [array addObject:_highscoresList];
        [array writeToFile:filePath atomically:YES];
        [array release];
    }
    [_highscoresList addObject:[NSNumber numberWithFloat:0.0f]];

    return self;
}

- (void) addScore:(float)score {
    // Implementation
}

- (BOOL) isScore:(float)score1 betterThan:(float)score2 {
    if (score1 > score2)
        return true;
    else
        return false;
}

- (BOOL) checkScoreAndAddToHighscoresList:(float)score {
    NSLog(@"%d",[_highscoresList count]);
    if ([_highscoresList count] < kHighscoresListLength) {

        [self addScore:score];
        [self saveHighscoresList];
        return true;

    } else {

        NSNumber *lowScoreNumber = [_highscoresList objectAtIndex:[_highscoresList count]-1];
        float lowScore = [lowScoreNumber floatValue];
        if ([self isScore:score betterThan:lowScore]) {

            [self addScore:score];
            [self saveHighscoresList];
            return true;

        }

    }

    return false;

}

- (void) saveHighscoresList {
    // Implementation
}

- (void) dealloc {
    [_highscoresList release];
    _highscoresList = nil;
    [super dealloc];
}

@end

最佳答案

这行有两个问题:

_highscoresList = [HighscoresListOfLists objectAtIndex:kMyListNumber];


您将丢失对该方法前面分配的数组的引用-内存泄漏。

您将其替换为对您不保留的对象的引用。在对象释放后使用此方法肯定会导致错误的访问异常。

关于xcode - 子类化NSObject时出错:“EXC_BAD_ACCESS”,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5710931/

10-10 06:32