我正在尝试实现一个回调机制,在该机制中我将一个块传递给一个类的 init,然后经过一些工作,该类将我回叫。该块被调用并且大多数东西都正常工作,除非我在块内的“self”上调用任何东西。我收到程序接收信号:“EXC_BAD_ACCESS”,除非我注释掉块内对 self 的任何引用。
我认为我可以在块内访问 self 是错误的吗?任何建议将不胜感激。这段代码在一个全新的“通用应用程序”中,我目前正在研究 iPad 部分,所以在 iPad 模拟器下运行。
一些代码:
__block LoginViewController *blockSelf = self;
LoginAlertView *alert = [[LoginAlertView alloc]
intWithPinPrompt:NO
title:@"Mobile Login"
myCallback:^(LoginAlertView *v){
DLog(@"self %@", blockSelf);
NSString *u = v.userNameText;
NSString *p = v.passwordText;
NSString *i = v.pinText;
[self authenticateUser:u
password:p
pin:i];
}];
这是来自 LoginAlertView 的一些代码
- (id) intWithPinPrompt:(BOOL)pinPromptEnabled title:(NSString*)aTitle myCallback:(loginClicked)aCallback{
if (self = [self initWithTitle:aTitle
message:nil
delegate:self
cancelButtonTitle:@"Cancel"
otherButtonTitles:@"Login", nil]) {
hasPinPrompt = pinPromptEnabled;
theCallback = aCallback;
}
return self;
}
和回调电话
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex{
if (theCallback) {
theCallback(self);
}
}
我改为以下代码行
theCallback = aCallback;
至
theCallback = [aCallback copy];
这向我展示了以下错误
Program received signal: “EXC_BAD_ACCESS”.
(gdb) bt
#0 0x029c8c97 in objc_msgSend ()
#1 0xbfffe560 in ?? ()
#2 0x00026f66 in -[LoginViewController show] (self=0x4a38450, _cmd=0x209c36c) at LoginViewController.m:18
#3 0x00026d3b in -[AuthenticatedViewController viewWillAppear:] (self=0x4c1fac0, _cmd=0x20b59ac, animated=0 '\0') at AuthenticatedViewController.m:17
另一件事,我的块的定义看起来像这样
typedef void(^loginClicked)(LoginAlertView*);
成员变量是这个
loginClicked theCallback;
还尝试将块的声明向上移动到一个变量,并将其传入。这具有相同的结果任何时候我在块上使用“副本”,我都会收到可怕的程序接收信号:“EXC_BAD_ACCESS”。我想这可能是IOS3.2的东西,所以我尝试在iPhone 4.0模拟器下运行它,结果相同。是否可能需要进行编译器设置才能将块“复制”到堆上?我正在使用 LLVM1.5