Posts

Post not yet marked as solved
1 Replies
The following error message is logged whenever an attempt to select any text in the WKWebView content: 0x1359ecc18 - [pageProxyID=14, webPageID=15, PID=14,932] WebPageProxy::didFailProvisionalLoadForFrame: frameID=1, isMainFrame=1, domain=NSURLErrorDomain, code=18,446,744,073,709,550,614, isMainFrame=1, willInternallyHandleFailure=0 WKWebView didFailProvisionalNavigation - error="unsupported URL"
Post not yet marked as solved
4 Replies
Recursively adding an NSValue encoded object to a mutable array resulted in similar crashes in AutoreleasePoolPage. Quinn's answer led me to solve my crash in AutoreleasePoolPage: typedef struct {     NSInteger       count;     NSObject        *cellObject; } CellDataStruct; NSMutableArray *list = [NSMutableArray array]; CellData cellData;     cellData.count = 47;     cellData.cellObject = aCellObject; // Recursively adding an NSValue encoded object to a mutable array causes crash in AutoreleasePoolPage:     [list addObject: [NSValue value:&cellData withObjCType:@encode(CellDataStruct)]]; // Replacing with: [list addObject:aCellObject]; // prevents crash.
Post not yet marked as solved
5 Replies
My error was NSetServicesErrorCode -72008 NSNetServicesErrorDomain = 10 ("Failed to Publish Service..." and the solution was as "robotconscience" and "kjyv" have said here.
Post marked as solved
3 Replies
I spent several hours chasing this until I found this fix. Thanks for the post.