UILocalNotification AlertLaunchImage 不起作用
我正在尝试将 UILocalNotification
的 alertLaunchImage
属性设置为 @"Default.png"
。它仅在应用程序从后台返回时起作用,但在应用程序从锁定屏幕返回时不起作用。可能是什么问题?
谢谢
I'm trying to set the alertLaunchImage
property of UILocalNotification
to @"Default.png"
. It works only when the application returns from background, but not when the application returns from lock screen. What might be the problem?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
alertLaunchImage
用于显示临时启动图像。假设您的应用程序有多个视图。对于我们的示例应用程序,假设我为闹钟设置了
UILocalNotificatiion
。如果我将alertLaunchImage
设置为空白 AlarmView.png,当我直接将用户带到 AlarmView 向他们显示详细信息时,它就不会闪烁。The
alertLaunchImage
is used to display a temporary launch image. Let's say your app has more than one views.For our example app, let say I set a
UILocalNotificatiion
for an alarm. If I set thealertLaunchImage
to a blank AlarmView.png it won't flicker when I take the user directly to the AlarmView to show them the detail.