推送通知是否有可能在应用程序打开时从手机顶部向下滑动,就像它最小化时一样?现在我正试图使用以下方法复制此行为:
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
{
//restore push
[[NSNotificationCenter defaultCenter] postNotificationName:@"appRestorePush" object:nil];
}
并通过动画我自己的自定义UIView来响应通知。
答案 0 :(得分:2)
不,不是。您采用的方法是正确的,您需要实现自己的视图并为其设置动画。