123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- #import <WebKit/WebKit.h>
- #import "UIImage+animatedGIF.h"
- #import "TWMessageBarManager.h"
- #import "MWPhotoBrowser.h"
- #import "ReaderViewController.h"
- #import "CCGraphics.h"
- @class tableMetadata;
- @class NCViewerImagemeter;
- @class NCViewerRichdocument;
- @interface CCDetail : UIViewController <MWPhotoBrowserDelegate, ReaderViewControllerDelegate>
- @property (nonatomic, strong) tableMetadata *metadataDetail;
- @property (nonatomic, strong) NSDate *dateFilterQuery;
- - (void)viewFile;
- @property (nonatomic, strong) UIToolbar *toolbar;
- @property (nonatomic, strong) WKWebView *webView;
- @property (nonatomic, strong) UIBarButtonItem *buttonAction;
- @property BOOL isMediaObserver;
- @property (nonatomic, strong) NSMutableArray *photoDataSource;
- @property (nonatomic, strong) MWPhotoBrowser *photoBrowser;
- @property (nonatomic, strong) NSMutableArray *photos;
- @property (nonatomic, strong) ReaderViewController *readerPDFViewController;
- @property (nonatomic, strong) NSString *passwordPDF;
- @property (nonatomic, strong) NCViewerRichdocument *richDocument;
- @property (nonatomic, strong) NCViewerImagemeter *imagemeter;
- @property(nonatomic, weak) IBOutlet UIImageView *imageBackground;
- - (void)changeToDisplayMode;
- - (void)downloadPhotoBrowserSuccessFailure:(tableMetadata *)metadata selector:(NSString *)selector errorCode:(NSInteger)errorCode;
- @end
|