Instruments freeze when WKWebView is created
I create a very simple mac os application
If I create a WKWebView like this "
-
(void)viewDidLoad { [super viewDidLoad];
// Do any additional setup after loading the view.
self.webview = [[WKWebView alloc] initWithFrame:NSMakeRect(0, 0, 500, 500)];
} " Then the instruments freeze when I record allocations Why? If I remove the creation of WKWebView, everything works fine
I'm using Xcode 14.2