DSNote
The DSNote class represents a note, which contains a key and content.
Definition
Assembly: DynamsoftCore.xcframework
- Objective-C
- Swift
@interface DSNote : NSObjectclass Note : NSObject
Attributes
| Attributes | Type | Description |
|---|---|---|
name |
NSString * | Set/get the name of the Note. |
content |
NSString * | Set/get the content of the Note. |
name
Set/get the name of the Note.
- Objective-C
- Swift
@property(nonatomic, copy) NSString *name;var name: String? { get set }
content
Set/get the content of the Note.
- Objective-C
- Swift
@property(nonatomic, copy) NSString *content;var content: String? { get set }