我正在开发一个iOS今天的小部件,事情是相当的功能.但是,当在真实的iOS设备上运行时,我偶尔会看到:
主机连接< NSXPCConnection:0x538ee0> pid 42的连接无效
这似乎不是一个主要问题,只是当这种情况发生时,小部件似乎几乎重新加载,偶尔会将“今日”屏幕中的空白留空,直到iOS重新绘制,并重新加载所有内容.
有没有人遇到过这个?我没有在我的应用程序中使用NSXPCConnection,所以我假设这是内置在框架中的东西,但我不确定
解决方法
NSXPCConnection API用于在iPhone上执行
Xcode客户端和应用程序之间的进程间连接.所以你不用担心这个.
链接:
https://developer.apple.com/library/mac/documentation/MacOSX/Conceptual/BPSystemStartup/Chapters/CreatingXPCServices.html
所以可能有两个原因,你的小部件被终止.
>你需要调用completionHandler(NCUpdateResultNoData);即使您的widgetPerformUpdateWithCompletionHandler已被调用,即使没有返回响应.
>由于自动应用程序终止,您的应用程序已终止.它终止小部件/应用程序有两个原因:
a. It terminates apps that are not being used and allowing the
reclamation of resources such as memory.b. It terminates widgets that use too much memory.