BBAFilePreviewControllerViewController.h
797 Bytes
//
// BBAFilePreviewControllerViewController.h
// BoxCore
//
// Created by Lily on 2018/3/6.
// Copyright © 2018年 Baidu. All rights reserved.
//
#import "BBAUIViewController.h"
#import <QuickLook/QuickLook.h>
// 使用本VC打开本地文档前请使用 [QLPreviewController canPreviewItem:(id<QLPreviewItem>)fileUrl] 判断是否可以打开,若可以再调用本VC
__attribute__ ((deprecated("该类已被废弃,请勿再使用")))
@interface BBAFilePreviewControllerViewController : BBAUIViewController
@property (nonatomic, strong) NSString *fileName; //文件名,展示title使用
@property (nonatomic, strong) NSURL *fileUrl; //本地fileURL,“file://”开头
@property (nonatomic, strong, readonly) QLPreviewController *qlViewController; // QL预览子VC
@end