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;