Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Returns the text content of the individual text line.
>
>1.
```objc
@property (nonatomic, nullable, readonly) NSString* text;
@property (nonatomic, readonly, copy) NSString* text;
```
2.
```swift
Expand All @@ -70,7 +70,7 @@ It is used to get the location of the text line in the form of a [DSQuadrilatera
>
>1.
```objc
@property (nonatomic, nullable, readonly) DSQuadrilateral* location;
@property (nonatomic, readonly, strong) DSQuadrilateral* location;
```
2.
```swift
Expand Down Expand Up @@ -104,7 +104,7 @@ Returns all the characters in the text line. Each character is represented by a
>
>1.
```objc
@property (nonatomic, nullable, readonly) NSArray<DSCharacterResult*>* charResult;
@property (nonatomic, readonly, copy, nullable) NSArray<DSCharacterResult*>* charResult;
```
2.
```swift
Expand Down Expand Up @@ -138,7 +138,7 @@ The recognized raw text, excluding any concatenation separators.
>
>1.
```objc
@property (nonatomic, assign, readonly) NSString* rawText;
@property (nonatomic, readonly, copy) NSString* rawText;
```
2.
```swift
Expand Down