-
Notifications
You must be signed in to change notification settings - Fork 520
PencilKit iOS xcode16.1 b3
Alex Soto edited this page Oct 24, 2024
·
2 revisions
#PencilKit.framework https://github.com/xamarin/xamarin-macios/pull/21519
diff -ruN /Applications/Xcode_16.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKCanvasView.h /Applications/Xcode_16.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKCanvasView.h
--- /Applications/Xcode_16.1.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKCanvasView.h 2024-09-03 02:07:00
+++ /Applications/Xcode_16.1.0-beta3.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKCanvasView.h 2024-09-30 06:05:39
@@ -11,7 +11,7 @@
NS_ASSUME_NONNULL_BEGIN
-@class PKDrawing, PKTool, PKCanvasView;
+@class PKDrawing, PKTool, PKCanvasView, PKStroke;
/// The optional methods a delegate can receive from editing-related changes
/// to a PKCanvasView.
@@ -54,6 +54,8 @@
///
/// @param canvasView The canvas view that the user ended interacting with.
- (void)canvasViewDidEndUsingTool:(PKCanvasView *)canvasView NS_SWIFT_NAME(canvasViewDidEndUsingTool(_:));
+
+- (void)canvasView:(PKCanvasView *)canvasView didRefineStrokes:(NSArray<PKStroke *> *)strokes withNewStrokes:(NSArray *)newStrokes NS_SWIFT_NAME(canvasView(_:didRefine:with:));
@end