Resource Base
Table of contents

DSNote

The DSNote class represents a note, which contains a key and content.

Definition

Assembly: DynamsoftCore.xcframework

  • Objective-C
  • Swift
  1. @interface DSNote : NSObject
    
  2. class 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
  1. @property(nonatomic, copy) NSString *name;
    
  2. var name: String? { get set }
    

content

Set/get the content of the Note.

  • Objective-C
  • Swift
  1. @property(nonatomic, copy) NSString *content;
    
  2. var content: String? { get set }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: