适用于设备的 Wacom Ink SDK
启用调试日志记录
可以注册一个记录一些有用信息的通知。这是通过以下方式实现的:
NotificationCenter.default.addObserver(self, selector: #selector(consoleLog), name: SmartpadConstants.Notification.consoleMessageRecieved, object: nil)
@objc func consoleLog(notification: Notification)
{
print("notification -> \(String(describing: notification))")
}