I am new to objective C, coming from .NET and java background.
So I need to create some UIwebviews asynchronously, I am doing this on my own queue using
<
As rob said the UI changes should be done only on main thread.You are trying to add from a secondary thread.Change your code [self.view addSubview:webView]; to
[self.view addSubview:webView];
[self.view performSelectorOnMainThread:@selector(addSubview:) withObject:webView waitUntilDone:YES];