12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #import <UIKit/UIKit.h>
- #import <MobileCoreServices/MobileCoreServices.h>
- #import <MediaPlayer/MediaPlayer.h>
- #import <AudioToolbox/AudioToolbox.h>
- #import <DZNEmptyDataSet/UIScrollView+EmptyDataSet.h>
- #import "TWMessageBarManager.h"
- #import "AHKActionSheet.h"
- #import "BKPasscodeViewController.h"
- #import "NSString+TruncateToWidth.h"
- #import "CCLogin.h"
- #import "CCCellMain.h"
- #import "CCCellMainTransfer.h"
- #import "CCDetail.h"
- #import "CCShareOC.h"
- #import "CCShareInfoCMOC.h"
- #import "CCGraphics.h"
- #import "CCSection.h"
- #import "CCUtility.h"
- #import "CCHud.h"
- #import "CCMenuAccount.h"
- #import "CCPeekPop.h"
- #import <MGSwipeTableCell/MGSwipeTableCell.h>
- @class tableMetadata;
- @interface CCMain : UIViewController <UITableViewDataSource, UITableViewDelegate, UIActionSheetDelegate, UIGestureRecognizerDelegate, UIDocumentInteractionControllerDelegate, UIViewControllerPreviewingDelegate, BKPasscodeViewControllerDelegate, UISplitViewControllerDelegate, UIPopoverControllerDelegate, CCShareOCDelegate, CCPeekPopDelegate, UIDocumentMenuDelegate, UIDocumentPickerDelegate, UISearchResultsUpdating, UISearchControllerDelegate, UISearchBarDelegate, UIScrollViewDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
- @property (nonatomic, weak) IBOutlet UITableView *tableView;
- @property (nonatomic, strong) tableMetadata *metadata;
- @property (nonatomic, strong) tableMetadata *metadataForPushDetail;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) NSString *titleMain;
- @property (nonatomic, weak) CCShareOC *shareOC;
- @property (nonatomic, weak) CCDetail *detailViewController;
- @property (nonatomic, strong) UISearchController *searchController;
- @property (nonatomic, strong) UIView *reMenuBackgroundView;
- @property (nonatomic, strong) UITapGestureRecognizer *singleFingerTap;
- @property BOOL isSelectedMode;
- - (void)openIn:(tableMetadata *)metadata;
- - (void)shouldPerformSegue:(tableMetadata *)metadata;
- - (void)saveToPhotoAlbum:(tableMetadata *)metadata;
- - (void)copyFileToPasteboard:(tableMetadata *)metadata;
- - (void)closeAllMenu;
- - (void)setUINavigationBarDefault;
- - (void)readFolder:(NSString *)serverUrl;
- - (void)readFileReloadFolder;
- - (void)tableViewReloadData;
- - (void)uploadFileAsset:(NSMutableArray *)assets serverUrl:(NSString *)serverUrl useSubFolder:(BOOL)useSubFolder session:(NSString *)session;
- - (void)reloadDatasource:(NSString *)serverUrl fileID:(NSString *)fileID action:(NSInteger)action;
- - (void)readShareWithAccount:(NSString *)account openWindow:(BOOL)openWindow metadata:(tableMetadata *)metadata;
- - (void)clearDateReadDataSource:(NSNotification *)notification;
- - (void)cancelSearchBar;
- - (void)openAssetsPickerController;
- - (void)openImportDocumentPicker;
- - (void)createFolder;
- @end
|