From 1117ed39229d136fe39a2062d12f70591c8d7055 Mon Sep 17 00:00:00 2001 From: DMGithubPublisher Date: Thu, 16 Oct 2025 13:35:21 +0800 Subject: [PATCH] update to internal commit a1c4780a --- .../api-reference/text-line-result-item.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/programming/objectivec-swift/api-reference/text-line-result-item.md b/programming/objectivec-swift/api-reference/text-line-result-item.md index c1559cd..81d96e1 100644 --- a/programming/objectivec-swift/api-reference/text-line-result-item.md +++ b/programming/objectivec-swift/api-reference/text-line-result-item.md @@ -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 @@ -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 @@ -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* charResult; +@property (nonatomic, readonly, copy, nullable) NSArray* charResult; ``` 2. ```swift @@ -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