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;