//
|
// FileListPage.h
|
// BaseProject
|
//
|
// Created by WindShan on 2016/12/9.
|
// Copyright © 2016年 WindShan. All rights reserved.
|
//
|
|
#import "BaseNavPage.h"
|
#import <QuickLook/QuickLook.h>
|
|
#import "DirectoryWatcher.h"
|
|
@interface FileListPage : BaseNavPage<DirectoryWatcherDelegate,
|
UIDocumentInteractionControllerDelegate>
|
|
@property (nonatomic, strong) DirectoryWatcher *docWatcher;
|
@property (nonatomic, strong) UIDocumentInteractionController *docInteractionController;
|
|
|
@end
|