gpt4 book ai didi

ios - 在模拟器中模拟 Apple pencil 似乎是可行的

转载 作者:行者123 更新时间:2023-12-05 05:19:52 39 4
gpt4 key购买 nike

我想知道是否可以在 iOS 模拟器中模拟 Apple pencil。

据 Apple 员工称 Xcode iOS Simulator: can I use the mouse as pretend Apple Pencil input (on iPad Pro), for testing?这不可能。并在2017年6月给出了答案。

根据 https://developer.xamarin.com/guides/cross-platform/windows/ios-simulator/ (最后一段:Windows 中的手写笔支持也在模拟器上转换为 Apple Pencil 输入。),使用 Xamarin 的远程 iOS 模拟器,可以模拟铅笔。 (他们已经拥有这个功能几个月了)

所以,我有点困惑。据我所知,Xamarin 也使用普通的 iOS 模拟器。 (他们只是通过 Windows PC 上的远程连接来显示它)如果他们在模拟器中支持铅笔,那么任何人都可以使用,不是吗?

最佳答案

对于那些在 2021 年坚持这样做的人,请尝试以下操作:

iOS 14

#if targetEnvironment(simulator)
canvasView.drawingPolicy = .anyInput
#else
canvasView.drawingPolicy = .pencilOnly
#endif

在“设置”应用程序中还有一个名为“仅使用 Apple Pencil 绘图”的全局设置。这可以从 PencilKit 中的 UIPencilInteraction.prefersPencilOnlyDrawing 中读取。

iOS 13(仅限)

#if targetEnvironment(simulator)
canvasView.allowsFingerDrawing = true
#else
canvasView.allowsFingerDrawing = false
#endif

https://stackoverflow.com/a/62567169/2667933 提供

关于ios - 在模拟器中模拟 Apple pencil 似乎是可行的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45451739/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com