Pages

Monday 5 January 2015

how to show pdf file or any other document in ios




    //If you are trying to display website or any url contain
    UIWebView *mywebview = [[UIWebView alloc] initWithFrame:CGRectMake(5, 5, 300, 300)];
    NSURL *targetURL = [NSURL URLWithString:@"http://www.google.com"];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
    [mywebview loadRequest:request];
    
    [self.view addSubview:mywebview];


    
    
    
    // if you have a PDF file or any other file  bundled with your application
    UIWebView *mywebview = [[UIWebView alloc] initWithFrame:CGRectMake(5, 5, 300, 300)];
    
    NSString *path = [[NSBundle mainBundle] pathForResource:@"document" ofType:@"pdf"];
    NSURL *targetURL = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];

    [mywebview loadRequest:request];



No comments:

Post a Comment