文档/文件查看器(支持本地或者其他app分享过来的word、excel、pdf、rtf等格式文件)
platform:ios, '8.0'
target '*****' do
pod 'JhtDocViewer'
end
JhtLoadDocView内部相关属性的修改可通过修改此model实现
文件保存 && 清理等方法
用于设置提示框中的 文字的大小,颜色,位置,背景图,是否包含警示小图标等参数
用于设置文件ID,文件名,绝对路径(本地文件),文件大小等参数
tableView的数据源是一个装有model的数组,model根据属性fileAbsolutePath(本地绝对路径),判断是否需要下载
《JhtDocViewer》文件用”其他应用“打开
“其他应用”文件用《JhtDocViewer》打开
App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
系统会告诉我们不能直接使用HTTP进行请求,需要在Info.plist新增一段用于控制ATS的配置
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
即:
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array>
<string>MySmallIcon.png</string>
<string>MyLargeIcon.png</string>
</array>
<key>CFBundleTypeName</key>
<string>My File Format</string>
<key>LSHandlerRank</key>
<string>Owner</string>
<key>LSItemContentTypes</key>
<array>
<string>com.microsoft.powerpoint.ppt</string>
<string>public.item</string>
<string>com.microsoft.word.doc</string>
<string>com.adobe.pdf</string>
<string>com.microsoft.excel.xls</string>
<string>public.image</string>
<string>public.content</string>
<string>public.composite-content</string>
<string>public.archive</string>
<string>public.audio</string>
<string>public.movie</string>
<string>public.text</string>
<string>public.data</string>
</array>
</dict>
</array>
属性说明:
- (BOOL)application:(UIApplication *)application openURL:(nonnull NSURL *)url options:(nonnull NSDictionary<NSString *,id> *)options {
if (options) {
NSString *str = [NSString stringWithFormat:@"\n发送请求的应用程序的 Bundle ID:%@\n\n文件的NSURL:%@", options[UIApplicationOpenURLOptionsSourceApplicationKey], url];
NSLog(@"%@", str);
if (self.window && url) {
// 根据“其他应用” 用“本应用”打开,通过url,进入列表页
[self pushDocListViewControllerWithUrl:url];
}
}
return YES;
}
#pragma mark ApplicationDelegate Method
/** 根据“其他应用” 用“本应用”打开,通过url,进入列表页 */
- (void)pushDocListViewControllerWithUrl:(NSURL *)url {
// 根据“其他应用” 用“本应用”打开,通过要打开的url,获得本地地址
NSString *appFilePath = [[JhtDocFileOperations sharedInstance] findLocalPathFromAppLicationOpenUrl:url];
// 跳转页面
DocListViewController *doc = [[DocListViewController alloc] init];
doc.appFilePath = appFilePath;
[_nav pushViewController:doc animated:YES];
}
系统库:WebKit.framework
三方库:AFNetworking3.x:自行添加