无法在 ios 10 通知中调试通知内容扩展
Posted
技术标签:
【中文标题】无法在 ios 10 通知中调试通知内容扩展【英文标题】:Not able to debug notificaton content extension in ios 10 notification 【发布时间】:2017-02-28 06:11:59 【问题描述】:print 语句在通知内容扩展中不起作用,虽然我可以修改标签文本和其他字段,下面是我的代码
class NotificationViewController: UIViewController, UNNotificationContentExtension
@IBOutlet weak var label: UILabel!
override func viewDidLoad()
super.viewDidLoad()
print("inside viewDidLoad of notificationViewController")
func didReceive(_ notification: UNNotification)
self.label?.text = notification.request.content.body
print("inside didReceive of notificationViewController")
【问题讨论】:
【参考方案1】:以下步骤指向here 对我有用:
运行包含扩展的应用程序后,
在扩展中设置断点 按 PID 或名称选择调试/附加到进程 输入扩展目标的名称 触发推送通知 扩展中的断点需要永远触发。要有耐心,最终你的断点会被命中每次通过 Xcode 重启应用时都必须这样做。
【讨论】:
嘿,我收到通知后崩溃了 ***.com/questions/49511005/… 就像这个一样,有什么想法吗? 知道触发断点的“永远”有多长,5 分钟、10 分钟或 1 小时?以上是关于无法在 ios 10 通知中调试通知内容扩展的主要内容,如果未能解决你的问题,请参考以下文章
无法使用 ios 10 中的通知服务扩展在远程通知中附加媒体