IMYWebLoader icon indicating copy to clipboard operation
IMYWebLoader copied to clipboard

EXC_BAD_ACCESS NSRunloop and action

Open githhhh opened this issue 6 years ago • 0 comments

IMYWebNetworkHandlerDefaultImpl

`+ (void)networkRequestThreadEntryPoint:(id)__unused object { @autoreleasepool { [[NSThread currentThread] setName:@"IMYWebNetworkThread"];

    NSRunLoop *runLoop = [NSRunLoop currentRunLoop];
    [runLoop addPort:[NSMachPort port] forMode:NSDefaultRunLoopMode];
    [runLoop run];
}

}`

[runLoop run]; 报EXC_BAD_ACCESS 

https://discussions.apple.com/thread/2028344

githhhh avatar Nov 16 '18 03:11 githhhh