mirror of
https://github.com/leanote/leanote-ios.git
synced 2026-01-13 06:03:40 +08:00
12 lines
179 B
Objective-C
Executable File
12 lines
179 B
Objective-C
Executable File
//
|
|
// Note+Create.h
|
|
// Leanote
|
|
|
|
#import "Note.h"
|
|
|
|
@interface Note (Create)
|
|
|
|
+ (Note*)noteWithText:(NSString*)text inManagedObjectContext:(NSManagedObjectContext*)context;
|
|
|
|
@end
|