12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #import <UIKit/UIKit.h>
- #import <Photos/Photos.h>
- #import <ImageIO/ImageIO.h>
- #import "UIScrollView+EmptyDataSet.h"
- #import "OCErrorMsg.h"
- #import "TWMessageBarManager.h"
- #import "CCManageLocation.h"
- #import "CCDetail.h"
- #import "CCUtility.h"
- #import "CCSection.h"
- #import "CCHud.h"
- #import "OCNetworking.h"
- #import "CCMove.h"
- @class tableMetadata;
- @interface CCMedia: UICollectionViewController <UICollectionViewDataSource, UICollectionViewDelegate, UIActionSheetDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate, OCNetworkingDelegate, CCMoveDelegate>
- @property (nonatomic, weak) CCDetail *detailViewController;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) NSMutableArray *addMetadatasFromUpload;
- - (void)downloadFileSuccessFailure:(NSString *)fileName fileID:(NSString *)fileID serverUrl:(NSString *)serverUrl selector:(NSString *)selector errorMessage:(NSString *)errorMessage errorCode:(NSInteger)errorCode;
- - (void)reloadDatasource:(NSString *)fileID action:(NSInteger)action;
- - (void)searchPhotoVideo;
- @end
|