i an new in this Field.I want to open static HTML page which i have so how can i open that page in my application.
any sample code related to this topic if possible?
Ankit Vyas
2010-06-04 08:38:18
Sure, search Google for "uiwebview example".
Alex Reynolds
2010-06-04 08:42:21
A:
NSBundle *bundle = [NSBundle mainBundle];
NSString *htmlTemplateLink = [bundle pathForResource:@"infopage" ofType:@"html"];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:htmlTemplateLink]];
wview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 0, 320, 460)];
wview.scalesPageToFit = YES;
[wview loadRequest:request];
wview.delegate=self;
//wview.multipleTouchEnabled=YES;
wview.userInteractionEnabled=YES;
[self.view addSubview:wview];
Ankit Vyas
2010-06-08 09:02:17