user331914
user331914

Reputation:

Creating Object in Objective C iPhone SDK

I need help creating an object for this declare

UIWebView *webView;

I thought it was the object, but Its the declare in my header file. Can someone help me create the object for this declare?

Upvotes: 1

Views: 118

Answers (1)

Rob
Rob

Reputation: 26324

UIWebView* webView = [[UIWebView alloc] init];

Upvotes: 1

Related Questions