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;
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-08-23 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2024-08-23 UTC。"],[[["`MLKStroke` represents a sequence of touch points, from pen/touch down to pen/touch up."],["It provides access to a list of touch points as `StrokePoint` objects through the `points` property."],["You should initialize a `MLKStroke` instance using the designated initializer `initWithPoints:`, providing an array of `StrokePoint` objects."]]],[]]