91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS 文件預覽 UIDocumentInteractionController

發布時間:2020-07-22 11:19:09 來源:網絡 閱讀:923 作者:xcmer2005 欄目:移動開發

在應用開發中,有時候需要預覽文檔和視頻,使用 UIDocumentInteractionController 來預覽文件非常方便,支持的格式比較多,比如 docx、xlsx、pdf、mov、mp4、jpg、png 等等都可以。具體代碼如下:

@interface ViewController () <UIDocumentInteractionControllerDelegate>
 
@property(nonatomic,strong) UIDocumentInteractionController * documentVC;
 
@end
 
@implementation ViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
    NSString *path = [[NSBundle mainBundle] pathForResource:@"第 7 章 Mach-O 文件格式解析" ofType:@"docx"];
    NSURL *url = [NSURL fileURLWithPath:path];
    
    self.documentVC = [UIDocumentInteractionController interactionControllerWithURL:url];
    self.documentVC.delegate = self;
    
    dispatch_async(dispatch_get_main_queue(), ^{
        BOOL b = [self.documentVC presentPreviewAnimated:YES];
    });
}
 
#pragma mark 代理方法
//為快速預覽指定控制器
- (UIViewController*)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController*)controller
{
    NSLog(@"%@",NSStringFromSelector(_cmd));
    return self;
}
 
//為快速預覽指定View
- (UIView*)documentInteractionControllerViewForPreview:(UIDocumentInteractionController*)controller
{
    NSLog(@"%@",NSStringFromSelector(_cmd));
    return self.view;
}
 
//為快速預覽指定顯示范圍
- (CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController*)controller
{
    NSLog(@"%@",NSStringFromSelector(_cmd));
    //    return self.view.frame;
    return CGRectMake(0, 0, self.view.frame.size.width, 300);
}
 
@end

效果如下圖,點擊 Done 就能回到主界面。

iOS 文件預覽 UIDocumentInteractionController


原文地址:https://www.exchen.net/ios-%E6%96%87%E4%BB%B6%E9%A2%84%E8%A7%88-uidocumentinteractioncontroller.html

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞金市| 汽车| 周宁县| 德昌县| 鄂托克旗| 株洲市| 陈巴尔虎旗| 秦安县| 衡阳县| 浦北县| 佛冈县| 炎陵县| 东至县| 元氏县| 鸡泽县| 九寨沟县| 黄山市| 越西县| 湘西| 庆元县| 广宁县| 拉萨市| 任丘市| 永吉县| 上栗县| 南靖县| 济宁市| 哈巴河县| 汽车| 塘沽区| 库尔勒市| 屏边| 门头沟区| 临漳县| 敦煌市| 福贡县| 十堰市| 香河县| 额济纳旗| 哈巴河县| 余干县|