12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #import <MBProgressHUD/MBProgressHUD.h>
- #import "CCGlobal.h"
- #import "CCGraphics.h"
- #import "CCCellShareExt.h"
- #import "NCSelectDestination.h"
- #import "CCHud.h"
- @interface ShareViewController : UIViewController <UITableViewDelegate, MBProgressHUDDelegate, NCSelectDestinationDelegate, UITextFieldDelegate>
- @property (nonatomic, strong) NSString *activeAccount;
- @property (nonatomic, strong) NSString *activeUrl;
- @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) CCHud *hud;
- - (void)closeShareViewController;
- - (void)reloadData:(NSArray *)files;
- @end
|