12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #import <UIKit/UIKit.h>
- #import "ZSSRichTextEditor.h"
- #import "CCTemplates.h"
- @protocol CCNoteDelegate <NSObject>
- - (void)readFolderWithForced:(BOOL)forced serverUrl:(NSString *)serverUrl;
- @end
- @interface CCNote : ZSSRichTextEditor
- @property(nonatomic, weak) id <CCNoteDelegate> delegate;
- - (id)initWithDelegate:(id <CCNoteDelegate>)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 *titolo;
- @property (nonatomic, strong) NSString *serverUrl;
- @property BOOL isLocal;
- @end
|