Skip to content

Commit 1e00592

Browse files
Merge pull request #49 from dynamsoft-docs/preview
update to internal commit a1c4780a
2 parents bc8699c + 1117ed3 commit 1e00592

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

programming/objectivec-swift/api-reference/text-line-result-item.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Returns the text content of the individual text line.
5353
>
5454
>1.
5555
```objc
56-
@property (nonatomic, nullable, readonly) NSString* text;
56+
@property (nonatomic, readonly, copy) NSString* text;
5757
```
5858
2.
5959
```swift
@@ -70,7 +70,7 @@ It is used to get the location of the text line in the form of a [DSQuadrilatera
7070
>
7171
>1.
7272
```objc
73-
@property (nonatomic, nullable, readonly) DSQuadrilateral* location;
73+
@property (nonatomic, readonly, strong) DSQuadrilateral* location;
7474
```
7575
2.
7676
```swift
@@ -104,7 +104,7 @@ Returns all the characters in the text line. Each character is represented by a
104104
>
105105
>1.
106106
```objc
107-
@property (nonatomic, nullable, readonly) NSArray<DSCharacterResult*>* charResult;
107+
@property (nonatomic, readonly, copy, nullable) NSArray<DSCharacterResult*>* charResult;
108108
```
109109
2.
110110
```swift
@@ -138,7 +138,7 @@ The recognized raw text, excluding any concatenation separators.
138138
>
139139
>1.
140140
```objc
141-
@property (nonatomic, assign, readonly) NSString* rawText;
141+
@property (nonatomic, readonly, copy) NSString* rawText;
142142
```
143143
2.
144144
```swift

0 commit comments

Comments
 (0)