Hi,
I'm trying to create WebView object programmatically:
WebView *webView = [WebView alloc]; // referencing error
:(
Any ideas ?
Thnx!
Hi,
I'm trying to create WebView object programmatically:
WebView *webView = [WebView alloc]; // referencing error
:(
Any ideas ?
Thnx!
I guess you miss initialization here, something like
WebView *webView = [[WebView alloc] init];
or using initWithFrame:frameName:groupName:
initializer
The designated initializer for WebView is -initWithFrame:frameName:groupName:. If you're not using the designated initializer, you won't get the desired results.