MLKitDigitalInkRecognition フレームワーク リファレンス

MLKStroke


@interface MLKStroke : NSObject

ペン(タッチ)イベントとペン(タッチ)イベントの間の一連のタッチポイントを表します。

  • StrokePoint としてのタッチポイントのリスト。

    宣言

    Objective-C

    @property (nonatomic, readonly) NSArray<MLKStrokePoint *> *_Nonnull points;
  • 使用できません。init(points:) を代わりに使用してください。

    宣言

    Objective-C

    - (nonnull instancetype)init;
  • 指定された一連のタッチポイントを使用して Stroke オブジェクトを初期化し、返します。

    宣言

    Objective-C

    - (nonnull instancetype)initWithPoints:
        (nonnull NSArray<MLKStrokePoint *> *)points;