123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #import <UIKit/UIKit.h>
- #import "ZSSRichTextEditor.h"
- #import "CCTemplates.h"
- @protocol CCNoteDelegate <NSObject>
- @end
- @interface CCNote : ZSSRichTextEditor
- @property(nonatomic, weak) id <CCNoteDelegate> delegate;
- - (id)initWithDelegate:(id <CCNoteDelegate>)delegate fileName:(NSString *)fileName uuid:(NSString *)uuid rev:(NSString *)rev fileID:(NSString *)fileID modelReadOnly:(BOOL)modelReadOnly isLocal:(BOOL)isLocal;
- @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 BOOL isLocal;
- @end
|