所以这很奇怪。我刚刚在我的应用程序中创建了一个新的单例,使用了我用于众多其他单例的相同模式。然而,这个并不适合调试器。这是获取单身人士的代码:
- (id)init
{
self = [super init];
if (self) {
[self loadData];
}
return self;
}
+ (Settings *)sharedInstance
{
static Settings *sharedInstance = nil;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
sharedInstance = [[self alloc] init];
// Do any other initialisation stuff here
});
return sharedInstance;
}
现在,当我尝试从调试器访问该对象时,它给了我:
error: Execution was interrupted, reason: EXC_BAD_ACCESS (code=1, address=0x20).
The process has been returned to the state before expression evaluation.
显然,我并没有试图从调试器中获取单例,我试图获得一个属性。这给出了一些更有趣的输出:
(lldb) po [Settings sharedInstance].jpegCompressionLevel
error: warning: got name from symbols: Settings
warning: receiver type 'void *' is not 'id' or interface pointer, consider casting it to 'id'
error: no known method '-sharedInstance'; cast the message send to the method's return type
error: 1 errors parsing expression
世界上到底发生了什么?代码内的调用似乎没问题。但调试器经常失败。在相同的上下文中,我能够很好地访问其他单身人士(使用相同的模式)。
值得注意的是loadData方法只是从磁盘加载一个字典,并且该类属性的getter使用该字典中的值,而不是ivars。
这里是loadData的代码:
-(void)loadData
{
// Load data from persistent storage
NSString *path = [self pathToDataFile];
NSMutableDictionary *settingsDict = [NSMutableDictionary dictionaryWithDictionary:[NSKeyedUnarchiver unarchiveObjectWithFile:path]];
_settingsDict = settingsDict;
}
答案 0 :(得分:0)
现在我无法解释原因,但是将类从“设置”重命名为其他修复问题的方法。我无法在符号浏览器中看到任何与此名称冲突的内容......非常奇怪。