0

上にスライドするViewControllerがあります。「保存」をクリックすると、サーバーにリクエストが送信されます。リクエストが完了すると、ViewController を閉じます。NSURLConnection を非同期とブロック (https://github.com/rickerbh/NSURLConnection-Blocks) を使用するように切り替えました。ViewController を閉じると、「Thread 2: Program received signal: EXC_BAD_ACCESS」がスローされるようになりました。それが問題なら、私はARCを使用しています。

- (IBAction) savePressed
{
    NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://api.com/items/create"]];

    //NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
    [NSURLConnection asyncRequest:request success:^(NSData *data, NSURLResponse *response) {
        [self close];
    } failure:^(NSData *data, NSError *error) {
        [self close];
    }];
}

- (void) close
{
    [self dismissViewControllerAnimated:YES completion:nil];
}

ここにログがあります

2012-10-24 10:32:43.780 Prayrbox[22268:1703] bool _WebTryThreadLock(bool), 0x1f21fd90: Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...
1   0x347dc927 WebThreadLock
2   0x36718615 <redacted>
3   0x366d0a85 <redacted>
4   0x3678d789 <redacted>
5   0x366c0637 <redacted>
6   0x366d50e7 <redacted>
7   0x368c1f11 <redacted>
8   0x366d4969 <redacted>
9   0x36744745 <redacted>
10  0x366907ad <redacted>
11  0x7ef71 -[ComposeViewController close]
12  0x7eec5 __36-[ComposeViewController savePressed]_block_invoke_0
13  0x82d8f __56+[NSURLConnection(Blocks) asyncRequest:success:failure:]_block_invoke_0
14  0x37e8811f <redacted>
15  0x37e96259 <redacted>
16  0x37e963b9 <redacted>
17  0x37b30a11 <redacted>
18  0x37b308a4 start_wqthread
[Switching to process 10755 thread 0x2a03]
[Switching to process 10755 thread 0x2a03]
[unknown](gdb) 

これに関するヘルプを探すのに 2 時間費やしました。何が助けになるか知っている人がいたら、声をかけてください!:)

4

1 に答える 1

6

最初は、ビューを却下するときに間違ったスレッドにいる可能性があるという上記のコメントに同意します。

UI スタッフはメインで実行する必要があるため、それを強制するには、次のようにします。

-(void) close {
    if([NSThread isMainThread]) {
        [self dismissViewControllerAnimated:YES completion:nil];
    }
    else {
        [self performSelectorOnMainThread:@selector(close)
                               withObject:nil
                           waitUntilDone:YES];
    }
}

ブロックから performSelectorOnMainThread を実行するのではなく、これにより、呼び出されたときにいつでもメインになることが保証されます。

于 2012-10-24T17:43:25.553 に答える