//
|
// DITableViewController.h
|
// istanbul
|
//
|
// Created by WindShan on 2017/6/21.
|
// Copyright © 2017年 WindShan. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import <QuickLook/QuickLook.h>
|
|
#import "DirectoryWatcher.h"
|
|
@interface DITableViewController : UITableViewController<QLPreviewControllerDataSource,
|
QLPreviewControllerDelegate,
|
DirectoryWatcherDelegate,
|
UIDocumentInteractionControllerDelegate>
|
|
@property (nonatomic, strong) DirectoryWatcher *docWatcher;
|
@property (nonatomic, strong) NSMutableArray *documentURLs;
|
@property (nonatomic, strong) UIDocumentInteractionController *docInteractionController;
|
|
@end
|