我有一个问题,我得到了错误的访问异常,但只有在运行测试版本时(在调试版本中调用相同的方法不会导致问题出现).该项目启用了ARC,我使用
Xcode 4.3在iPad 5.1模拟器上运行它:
这就是问题出现的地方:
- (void)testChangeFoodNotification { Player* p = [[Player alloc] init]; [p addObserver:self forKeyPath:@"food" options:0 context:0]; // <-EXC_BAD_ACCESS (code=2) p.food += 1; STAssertTrue(_wasNotifiedOfFoodChange,nil); }
在调用addObserver:方法时,似乎不应该释放任何涉及的对象,那么可能导致异常的原因是什么?
编辑:
如果不清楚但上面的代码是作为测试用例的一部分执行(使用标准的Xcode OCUnit),则道歉.此外,如果它澄清了任何东西,这里是播放器类的相关代码(还有其他的ivars和方法,但它们没有任何连接到被测试的属性或方法):
// Public interface @interface Player : NSObject @property (nonatomic,assign) NSInteger food; @end // Private interface @interface Player() { NSInteger _food; } @end @implementation Player @synthesize food = _food; #pragma mark - Getters/Setters - (void)setFood:(NSInteger)food { [self willChangeValueForKey:@"food"]; _food = food; [self didChangeValueForKey:@"food"]; }
解决方法
如果您的课程确实符合键值,请确保展示该问题的课程的实施不包含在您的测试产品中.这意味着.m文件的Identity检查器的Target Membership面板应仅检查您的应用程序(而不是YourAppTests).
我在Xcode 4.3.1中遇到了同样的问题,当两个产品都包含一个实现时,我在生产和测试代码中都注册了观察者.以下日志告诉我:
Class YourClass is implemented in both /Users/yourUser/Library/Application Support/iPhone Simulator/5.1/Applications//YourApp.app/YourApp and /Users/yourUser/Library/Developer/Xcode/DerivedData/YourApp-/Build/Products/Debug-iphonesimulator/YourAppTests.octest/YourAppTests. One of the two will be used. Which one is undefined.