1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #import <MBProgressHUD/MBProgressHUD.h>
- #import "CCCellShareExt.h"
- #import "NCSelectDestination.h"
- #import "CCHud.h"
- @interface ShareViewController : UIViewController <UITableViewDelegate, MBProgressHUDDelegate, NCSelectDestinationDelegate, UITextFieldDelegate>
- @property (nonatomic, strong) NSString *account;
- @property (nonatomic, strong) NSString *urlBase;
- @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
|