MLKitDigitalInkRecognition 프레임워크 참조

MLKInk


@interface MLKInk : NSObject

사용자 입력을 Stroke의 컬렉션으로 나타내며 필기 입력 인식 작업의 입력 역할을 합니다.

  • 잉크를 구성하는 스트로크 목록

    선언

    Objective-C

    @property (nonatomic, readonly) NSArray<MLKStroke *> *_Nonnull strokes;
  • 사용할 수 없습니다. 대신 init(points:) 또는 init(strokes:)를 사용하세요.

    선언

    Objective-C

    - (nonnull instancetype)init;
  • 제공된 획의 순서를 사용하여 Ink 객체를 초기화하고 반환합니다.

    선언

    Objective-C

    - (nonnull instancetype)initWithStrokes:(nonnull NSArray<MLKStroke *> *)strokes;