1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #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;
- @interface CCDetail : UIViewController <MWPhotoBrowserDelegate, ReaderViewControllerDelegate>
- @property (nonatomic, strong) tableMetadata *metadataDetail;
- @property (nonatomic, strong) NSDate *dateFilterQuery;
- @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, weak) IBOutlet UIImageView *imageBackground;
- - (void)changeToDisplayMode;
- - (void)downloadPhotoBrowserSuccessFailure:(tableMetadata *)metadata selector:(NSString *)selector errorCode:(NSInteger)errorCode;
- @end
|