Post

Replies

Boosts

Views

Activity

Reply to Text selection doesn't work in WKWebView on macOS Sonoma
Apple Engineer, thanks for your post. Yes, [self.view isUserInteractionEnabled] is TRUE; I filed a Feedback report, FB13344011, November 2023, and it wasn't until April of this year that Apple Feedback requested more information. At that time I provided 2 screencasts illustrating the non-existence of the bug on Ventura, and its existence on Sonoma. I also provided a copy of the App. Since then there has been no interaction from Apple––not even an acknowledgement of the information I sent. Where else can I file a bug report?
Jul ’24
Reply to Why does text selection not work in MacCatalyst app's WKWebView on macOS Sonoma Only
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"
Nov ’23
Reply to crash - AutoreleasePoolPage
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.
May ’22