APP文档的导入

App中文档的引入

目的:将pdf,docx,url连接,html文件导入到app的某个板块中

实现方式:利用UIWebView

  使用UIWebView首先创建一个UIWebView的对象,取名为wbView。使用UIWebView的方便之处就在于不需要额外的代码就可实现程序对所导入文档的缩放功能。


代码:

/**
 *  Loading PDF File
 */
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    self.title = @"......";
    
    /**
     *  Loading Files in UIwebview
     *
     *  1. Load url
     *  NSMutableURLRequest * request = [NSMutableURLRequest requestWithURL: *[NSURL URLWithString:@"http://"]];
     *  [self.viewAgenda loadRequest: request];
     *  
     *  2. Load html
     *  NSURL *url = [[NSBundle mainBundle] URLForResource:@"index" withExtension:@"html"];
     *  [self.viewAgenda loadRequest:[NSURLRequest requestWithURL:url]];
     *
     *  3. Load docx
     *  NSURL *url = [[NSBundle mainBundle] URLForResource:@"sampleWord" withExtension:@"docx"];
     *  [self.viewAgenda laodRequest:[NSURLRequest requestWithURL:url]];
     */
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"File Name" withExtension:@"pdf"];
    [self.wbView loadRequest:[NSURLRequest requestWithURL:url]];
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值