123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #import <UIKit/UIKit.h>
- #import "XLFormViewController.h"
- #import "CCTemplates.h"
- @protocol CCAccountWebDelegate <NSObject>
- - (void)readFolder:(NSString *)serverUrl;
- @end
- @interface CCAccountWeb : XLFormViewController
- @property(nonatomic, weak) id <CCAccountWebDelegate> delegate;
- - (id)initWithDelegate:(id <CCAccountWebDelegate>)delegate fileName:(NSString *)fileName uuid:(NSString *)uuid fileID:(NSString *)fileID isLocal:(BOOL)isLocal serverUrl:(NSString *)serverUrl;
- @property (nonatomic, strong) NSString *fileName;
- @property (nonatomic, strong) NSString *uuid;
- @property (nonatomic, strong) NSString *rev;
- @property (nonatomic, strong) NSString *fileID;
- @property (nonatomic, strong) NSString *serverUrl;
- @property BOOL isLocal;
- @end
|