Skip to content

PencilKit iOS xcode26.0 b1

Alex Soto edited this page Jun 9, 2025 · 1 revision

#PencilKit.framework

diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKContentVersion.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKContentVersion.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKContentVersion.h	2025-04-19 13:29:13
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKContentVersion.h	2025-05-25 03:44:10
@@ -22,7 +22,10 @@
     
     /// New Fountain Pen
     PKContentVersion3 NS_SWIFT_NAME(version3) API_AVAILABLE(ios(17.5), macos(14.5)),
+    
+    /// New Reed Pen
+    PKContentVersion4 NS_SWIFT_NAME(version4) API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0)),
 
     /// The latest version including all features.
-    PKContentVersionLatest = 3
+    PKContentVersionLatest = 4
 };
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkType.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkType.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkType.h	2025-04-19 13:29:14
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkType.h	2025-05-25 03:44:10
@@ -15,4 +15,6 @@
 API_AVAILABLE(ios(17.0), macos(14.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeMonoline;
 API_AVAILABLE(ios(17.0), macos(14.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeFountainPen;
 API_AVAILABLE(ios(17.0), macos(14.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeWatercolor;
+API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeReed;
+API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeReedCalligraphyPen;
 API_AVAILABLE(ios(17.0), macos(14.0))  FOUNDATION_EXPORT PKInkType const PKInkTypeCrayon;
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkingTool.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkingTool.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkingTool.h	2025-04-19 13:29:14
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKInkingTool.h	2025-05-25 03:44:10
@@ -35,6 +35,18 @@
 - (instancetype)initWithInkType:(PKInkType)type color:(NSColor *)color width:(CGFloat)width NS_DESIGNATED_INITIALIZER;
 #endif
 
+/// Create a new inking tool, specifying its type, color, width, and angle.
+///
+/// @param type The type of ink.
+/// @param color The color of the ink.
+/// @param width The width of the ink.
+/// @param angle The angle of the ink.
+#if TARGET_OS_IPHONE
+- (instancetype)initWithInkType:(PKInkType)type color:(UIColor *)color width:(CGFloat)width azimuth:(CGFloat)angle NS_DESIGNATED_INITIALIZER API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0));
+#else
+- (instancetype)initWithInkType:(PKInkType)type color:(NSColor *)color width:(CGFloat)width azimuth:(CGFloat)angle NS_DESIGNATED_INITIALIZER API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0));
+#endif
+
 /// Create a new inking tool, specifying its type and color, using a default width.
 ///
 /// @param type The type of ink.
@@ -83,6 +95,9 @@
 
 /// The base width of the ink.
 @property (nonatomic, readonly) CGFloat width;
+
+/// The base angle of the ink.
+@property (nonatomic, readonly) CGFloat azimuth API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0));
 
 /// The ink that this tool will create strokes with.
 @property (nonatomic, readonly) PKInk *ink API_AVAILABLE(ios(14.0));
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKResponderState.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKResponderState.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKResponderState.h	1969-12-31 19:00:00
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKResponderState.h	2025-05-25 03:44:10
@@ -0,0 +1,64 @@
+//
+//  PKResponderState.h
+//  PencilKit
+//
+//  Copyright © 2024 Apple Inc. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+NS_ASSUME_NONNULL_BEGIN
+
+@class PKToolPicker;
+
+/// The visibility state of a tool picker.
+API_AVAILABLE(ios(26.0), visionos(26.0))
+typedef NS_ENUM(NSInteger, PKToolPickerVisibility) {
+    /// Inherit the tool picker visibility from the next responder.
+    PKToolPickerVisibilityInherited NS_REFINED_FOR_SWIFT,
+    /// No active tool picker.
+    PKToolPickerVisibilityInactive,
+    /// Tool picker is active but offscreen, and can appear temporarily in response to user actions.
+    PKToolPickerVisibilityHidden,
+    /// Tool picker is active and onscreen.
+    PKToolPickerVisibilityVisible
+};
+
+/// The state of PencilKit behavior related to a `UIResponder`.
+///
+/// Control the behavior of responders via the `UIResponder.pencilKitResponderState` property.
+/// ```swift
+/// view.pencilKitResponderState.activeToolPicker = PKToolPicker()
+/// view.pencilKitResponderState.toolPickerVisibility = .visible
+/// ```
+API_AVAILABLE(ios(26.0), visionos(26.0))
+@interface PKResponderState : NSObject
+
+/// The visibility state of the tool picker.
+///
+/// This controls the state of the tool picker that is provided by the `activeToolPicker` property.
+///
+/// If `PKToolPickerVisibilityInherited` tool picker visibility is based on the next responder. If no responder provides a visibility, the default is `PKToolPickerVisibilityVisible`.
+@property (nonatomic, assign) PKToolPickerVisibility toolPickerVisibility NS_REFINED_FOR_SWIFT;
+
+/// The current tool picker.
+///
+/// Control tool picker visibility with the `toolPickerVisibility` property.
+///
+/// If `nil` the active tool picker is based on the next responder.
+@property (nonatomic, strong, nullable) PKToolPicker *activeToolPicker;
+
+@end
+
+
+API_AVAILABLE(ios(26.0), visionos(26.0))
+@interface UIResponder (PKResponderState)
+
+/// The PencilKit state associated with the responder object.
+///
+/// The state controls PencilKit behavior related to this responder.
+@property (nonatomic, readonly, nonnull) PKResponderState *pencilKitResponderState;
+
+@end
+
+NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKStrokePoint.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKStrokePoint.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKStrokePoint.h	2025-04-19 13:29:14
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKStrokePoint.h	2025-05-25 03:44:10
@@ -23,6 +23,9 @@
 /// Create a new point with the provided properties.
 - (instancetype)initWithLocation:(CGPoint)location timeOffset:(NSTimeInterval)timeOffset size:(CGSize)size opacity:(CGFloat)opacity force:(CGFloat)force azimuth:(CGFloat)azimuth altitude:(CGFloat)altitude secondaryScale:(CGFloat)secondaryScale NS_DESIGNATED_INITIALIZER;
 
+/// Create a new point with the provided properties.
+- (instancetype)initWithLocation:(CGPoint)location timeOffset:(NSTimeInterval)timeOffset size:(CGSize)size opacity:(CGFloat)opacity force:(CGFloat)force azimuth:(CGFloat)azimuth altitude:(CGFloat)altitude secondaryScale:(CGFloat)secondaryScale threshold:(CGFloat)threshold NS_DESIGNATED_INITIALIZER;
+
 /// Location of the point.
 @property (nonatomic, readonly) CGPoint location;
 /// Time offset since the start of the stroke path in seconds.
@@ -43,6 +46,12 @@
 ///
 /// For example the scaling of the pigment in the watercolor ink.
 @property (nonatomic, readonly) CGFloat secondaryScale API_AVAILABLE(ios(17.0), macos(14.0));
+
+/// The threshold for clipping the stroke rendering.
+///
+/// When rendering only pixels with an alpha greater than the threshold are drawn. A threshold of 0 has no affect on rendering,
+/// a threshold of 1 does not draw anything. Thresholds are only used for some inks, eg. `PKInkIdentifierReed`.
+@property (nonatomic, readonly) CGFloat threshold API_AVAILABLE(ios(26.0), macos(26.0), visionos(26.0));
 
 @end
 
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPicker.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPicker.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPicker.h	2025-04-19 04:20:27
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPicker.h	2025-05-25 04:32:19
@@ -97,6 +97,11 @@
 /// All tool items within the picker.
 @property (nonatomic, readonly) NSArray<PKToolPickerItem *> *toolItems API_AVAILABLE(ios(18.0), visionos(2.0));
 
+/// The default tool items for new tool pickers.
+///
+/// These items are used when creating a new `PKToolPicker`.
+@property (class, nonatomic, nonnull, readonly) NSArray<PKToolPickerItem *> *defaultToolItems API_AVAILABLE(ios(26.0), visionos(26.0));
+
 /// Is the ruler toggled such that it should be active on canvases.
 @property (nonatomic, getter=isRulerActive) BOOL rulerActive;
 
@@ -165,6 +170,11 @@
 /// @param items the items in desired order that are used to set up the picker.  At least one item is required.
 ///        If `items` contains tools with the same identifier, only the first item is used to create the picker.
 - (instancetype)initWithToolItems:(NSArray<PKToolPickerItem *> *)items API_AVAILABLE(ios(18.0), visionos(2.0));
+
+/// Maximum linear exposure for the color picker used by the tool picker. Can be used to enable picking HDR colors.
+///
+/// Default value is 1.0 which means only SDR colors can be picked.
+@property (nonatomic, assign) CGFloat colorMaximumLinearExposure API_AVAILABLE(ios(26.0), visionos(26.0));
 
 @end
 NS_ASSUME_NONNULL_END
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerEraserItem.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerEraserItem.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerEraserItem.h	2025-04-19 13:29:13
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerEraserItem.h	2025-05-25 03:44:10
@@ -13,7 +13,7 @@
 NS_ASSUME_NONNULL_BEGIN
 
 /// A user interface for an eraser tool item in PKToolPicker.
-API_AVAILABLE(ios(18.0), visionos(2.0))
+API_AVAILABLE(ios(18.0), visionos(2.0), macos(26.0))
 @interface PKToolPickerEraserItem : PKToolPickerItem
 
 /// Create a new eraser tool item.
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerInkingItem.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerInkingItem.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerInkingItem.h	2025-04-19 13:29:14
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerInkingItem.h	2025-05-25 03:44:10
@@ -16,7 +16,7 @@
 NS_ASSUME_NONNULL_BEGIN
 
 /// A user interface for an inking tool item in PKToolPicker.
-API_AVAILABLE(ios(18.0), visionos(2.0))
+API_AVAILABLE(ios(18.0), visionos(2.0), macos(26.0))
 @interface PKToolPickerInkingItem : PKToolPickerItem
 
 /// Create a new tool picker item with a `PKInkType`.
@@ -26,7 +26,11 @@
 /// Create a new tool picker item with a `PKInkType`.
 /// @param inkType The ink type for the tool.
 /// @param color The color for the tool.
+#if TARGET_OS_IPHONE
 - (instancetype)initWithInkType:(PKInkType)inkType color:(UIColor *)color NS_REFINED_FOR_SWIFT;
+#else
+- (instancetype)initWithInkType:(PKInkType)inkType color:(NSColor *)color NS_REFINED_FOR_SWIFT;
+#endif
 
 /// Create a new tool picker item with a `PKInkType`.
 /// @param inkType The ink type for the tool.
@@ -37,14 +41,34 @@
 /// @param inkType The ink type for the tool.
 /// @param color The color for the tool.
 /// @param width The width for the tool.
+#if TARGET_OS_IPHONE
 - (instancetype)initWithInkType:(PKInkType)inkType color:(UIColor *)color width:(CGFloat)width NS_REFINED_FOR_SWIFT;
+#else
+- (instancetype)initWithInkType:(PKInkType)inkType color:(NSColor *)color width:(CGFloat)width NS_REFINED_FOR_SWIFT;
+#endif
 
 /// Create a new tool picker item with a `PKInkType`.
 /// @param inkType The ink type for the tool.
 /// @param color The color for the tool.
 /// @param width The width for the tool.
 /// @param identifier The identifier for the tool item. Passing `nil` resolves to a default value based on the `PKInkType`.
+#if TARGET_OS_IPHONE
 - (instancetype)initWithInkType:(PKInkType)inkType color:(UIColor *)color width:(CGFloat)width identifier:(nullable NSString *)identifier NS_REFINED_FOR_SWIFT;
+#else
+- (instancetype)initWithInkType:(PKInkType)inkType color:(NSColor *)color width:(CGFloat)width identifier:(nullable NSString *)identifier NS_REFINED_FOR_SWIFT;
+#endif
+
+/// Create a new tool picker item with a `PKInkType`.
+/// @param inkType The ink type for the tool.
+/// @param color The color for the tool.
+/// @param width The width for the tool.
+/// @param azimuth The azimuth for the tool.
+/// @param identifier The identifier for the tool item. Passing `nil` resolves to a default value based on the `PKInkType`.
+#if TARGET_OS_IPHONE
+- (instancetype)initWithInkType:(PKInkType)inkType color:(UIColor *)color width:(CGFloat)width azimuth:(CGFloat)azimuth identifier:(nullable NSString *)identifier API_AVAILABLE(ios(26.0), visionos(26.0)) NS_REFINED_FOR_SWIFT;
+#else
+- (instancetype)initWithInkType:(PKInkType)inkType color:(NSColor *)color width:(CGFloat)width azimuth:(CGFloat)azimuth identifier:(nullable NSString *)identifier NS_REFINED_FOR_SWIFT;
+#endif
 
 /// A tool for drawing on a `PKCanvasView`.
 @property (nonatomic, readonly) PKInkingTool *inkingTool NS_REFINED_FOR_SWIFT;
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerItem.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerItem.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerItem.h	2025-04-19 13:29:13
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PKToolPickerItem.h	2025-05-25 03:44:10
@@ -9,8 +9,10 @@
 
 NS_ASSUME_NONNULL_BEGIN
 
+@class PKTool;
+
 /// A user interface for a tool item in PKToolPicker.
-API_AVAILABLE(ios(18.0), visionos(2.0))
+API_AVAILABLE(ios(18.0), visionos(2.0), macos(26.0))
 @interface PKToolPickerItem : NSObject <NSCopying>
  
 - (instancetype)init NS_UNAVAILABLE;
@@ -19,6 +21,9 @@
 /// For example, com.example.myapp.toolpicker.pencil.
 /// If multiple items with the same identifier are used to create the picker, only the first instance is used.
 @property (nonatomic, readonly) NSString *identifier;
+
+/// The `PKTool` this tool picker item represents.
+@property (nonatomic, nullable, readonly) PKTool *tool API_AVAILABLE(ios(26.0), visionos(26.0)) NS_REFINED_FOR_SWIFT;
 
 @end
 
diff -ruN /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PencilKit.h /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PencilKit.h
--- /Applications/Xcode_16.4.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PencilKit.h	2025-04-19 13:29:12
+++ /Applications/Xcode_26.0.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/PencilKit.framework/Headers/PencilKit.h	2025-05-25 03:44:09
@@ -11,19 +11,20 @@
 #import <PencilKit/PKCanvasView.h>
 #import <PencilKit/PKToolPicker.h>
 #import <PencilKit/PKToolPickerCustomItem.h>
-#import <PencilKit/PKToolPickerEraserItem.h>
-#import <PencilKit/PKToolPickerInkingItem.h>
 #import <PencilKit/PKToolPickerCustomItemConfiguration.h>
-#import <PencilKit/PKToolPickerItem.h>
 #import <PencilKit/PKToolPickerLassoItem.h>
 #import <PencilKit/PKToolPickerRulerItem.h>
 #import <PencilKit/PKToolPickerScribbleItem.h>
+#import <PencilKit/PKResponderState.h>
 #endif
 
 #import <PencilKit/PKTool.h>
 #import <PencilKit/PKLassoTool.h>
 #import <PencilKit/PKEraserTool.h>
 #import <PencilKit/PKInkingTool.h>
+#import <PencilKit/PKToolPickerEraserItem.h>
+#import <PencilKit/PKToolPickerInkingItem.h>
+#import <PencilKit/PKToolPickerItem.h>
 
 #import <PencilKit/PKDrawing.h>
 #import <PencilKit/PKStroke.h>
Clone this wiki locally