1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- #import <MBProgressHUD/MBProgressHUD.h>
- #import "OCCommunication.h"
- #import "CCNetworking.h"
- #import "OCNetworking.h"
- #import "CCBKPasscode.h"
- #import "CCGlobal.h"
- #import "CCGraphics.h"
- #import "CCCellShareExt.h"
- #import "CCMove.h"
- #import "CCError.h"
- #import "CCHud.h"
- @interface ShareViewController : UIViewController <UITableViewDelegate, MBProgressHUDDelegate, BKPasscodeViewControllerDelegate, CCMoveDelegate>
- @property (nonatomic, strong) NSString *activeAccount;
- @property (nonatomic, strong) NSString *activeUrl;
- @property (nonatomic, strong) NSString *activeUser;
- @property (nonatomic, strong) NSString *activeUserID;
- @property (nonatomic, strong) NSString *activePassword;
- @property (nonatomic, strong) NSString *activeAccessToken;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, retain) NSMutableArray *filesName;
- @property (nonatomic, weak) IBOutlet UITableView *shareTable;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *destinyFolderButton;
- @property (nonatomic, weak) IBOutlet NSLayoutConstraint *constraintTopTableView;
- @property (nonatomic, weak) IBOutlet UIToolbar *toolBar;
- @property (nonatomic, strong) CCBKPasscode *viewControllerBKInit;
- @property (nonatomic) NSUInteger failedAttempts;
- @property (nonatomic, strong) NSDate *lockUntilDate;
- @property (nonatomic, strong) CCHud *hud;
- - (void)closeShareViewController;
- - (void)reloadData:(NSArray *)files;
- @end
|