我发布了一个测试版,其中包含一些设置如下的新UILocalNotifications:
UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.fireDate = fireDate;
notification.alertBody = alertString;
notification.userInfo = @{@"userinfo":userName};
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
现在我被告知不在测试版中的人正在接收这些消息。在上面的代码中设置消息的唯一方法。当这些用户无法访问beta版本时,有没有办法在用户的手机上显示?
P.S。 “这不可能发生,毫无意义”的自信答案也会受到欢迎。