12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #import <WebKit/WebKit.h>
- #import "UIImage+animatedGIF.h"
- #import "LMMediaPlayerView.h"
- #import "TWMessageBarManager.h"
- #import "MWPhotoBrowser.h"
- #import "ReaderViewController.h"
- #import "UINavigationController+CCProgress.h"
- #import "CCGraphics.h"
- @class tableMetadata;
- @interface CCDetail : UIViewController <UIDocumentInteractionControllerDelegate, MWPhotoBrowserDelegate, ReaderViewControllerDelegate>
- @property (nonatomic, strong) tableMetadata *metadataDetail;
- @property BOOL sourceDirectoryLocal;
- @property (nonatomic, strong) NSDate *dateFilterQuery;
- @property (nonatomic, strong) WKWebView *webView;
- @property (nonatomic, strong) NSMutableArray *dataSourceImagesVideos;
- @property (nonatomic, strong) MWPhotoBrowser *photoBrowser;
- @property (nonatomic, strong) NSMutableArray *photos;
- @property (nonatomic, strong) NSMutableArray *thumbs;
- @property (nonatomic, strong) ReaderViewController *readerPDFViewController;
- @property (nonatomic, strong) NSString *passwordPDF;
- @property (nonatomic, strong) UIDocumentInteractionController *docController;
- @property(nonatomic, weak) IBOutlet UIImageView *imageBackground;
- - (void)removeAllView;
- - (void)changeToDisplayMode;
- - (void)downloadPhotoBrowserFailure:(NSInteger)errorCode;
- - (void)downloadPhotoBrowserSuccess:(tableMetadata *)metadataVar selector:(NSString *)selector;
- @end
|