12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #import <UIKit/UIKit.h>
- #import "TWMessageBarManager.h"
- #import "UIScrollView+EmptyDataSet.h"
- #import "CCBKPasscode.h"
- #import "CCUtility.h"
- #import "OCNetworking.h"
- #import "CCHud.h"
- @class tableMetadata;
- @protocol CCMoveDelegate;
- @interface CCMove : UITableViewController <UIAlertViewDelegate, UITableViewDelegate, OCNetworkingDelegate, BKPasscodeViewControllerDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate>
- @property (nonatomic, weak) id <CCMoveDelegate> delegate;
- @property (nonatomic, strong) NSOperationQueue *networkingOperationQueue;
- @property BOOL onlyClearDirectory;
- @property (nonatomic, strong) NSString *serverUrl;
- @property (nonatomic, strong) tableMetadata *passMetadata;
- @property (nonatomic) NSUInteger failedAttempts;
- @property (nonatomic, strong) NSDate *lockUntilDate;
- @property (nonatomic, strong) UIColor *barTintColor;
- @property (nonatomic, strong) UIColor *tintColor;
- @property (nonatomic, strong) UIColor *tintColorTitle;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *cancel;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *move;
- @property (nonatomic, weak) IBOutlet UIBarButtonItem *create;
- @end
- @protocol CCMoveDelegate <NSObject>
- - (void)moveServerUrlTo:(NSString *)serverUrlTo title:(NSString *)title;
- @optional - (void)dismissMove;
- @end
|