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;