2009-10-24 4 views

답변

0
사용하십시오있는 UIWebView

및 자원에 HTML 파일로 페이지를 저장에

감사합니다.

// Create the UIWebView 
    UIWebView *webView = [[[UIWebView alloc] initWithFrame:self.view.frame] autorelease]; 

    // Add the UIWebView to our view 
    [self.view addSubview:webView]; 

    // Load the HTML document from resources 
    NSString *pagePath = [[NSBundle mainBundle] pathForResource:@"legal" ofType:@"html"]; 
    NSURL *pageURL = [NSURL fileURLWithPath:pagePath]; 
    NSURLRequest *pageReq = [NSURLRequest requestWithURL:pageURL]; 
    [webView loadRequest:pageReq];