此库用于在 WebView 中打开(本地)文件。
主要用途是调试。
pod 'OpenFileInWebView'
@interface OpenFileInWebView : NSObject
// @return viewcontroller to load file.
// support file type depended on webview.(pdf,doc etc..)
+ (UIViewController *)viewControllerToOpenFile:(NSString *) filePath;
@end
UIViewController *controller = [OpenFileInWebView viewControllerToOpenFile:[[NSBundle mainBundle] pathForResource:@"index" ofType:@"pdf"]];
[self.navigationController pushViewController:controller animated:YES];
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature
MIT