zoukankan      html  css  js  c++  java
  • iOS推送后页面跳转

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    <br>
    <br>    if (launchOptions)
    <br>
    <br>    {
    <br>
    <br>        [[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];
    <br>
    <br>        NSDictionary *userInfo = [launchOptions objectForKey: UIApplicationLaunchOptionsRemoteNotificationKey];
    <br>
    <br>        [self presentViewControllerWithUserInfo:userInfo];
    <br>
    <br>    }
    <br>
    <br>}
    <br>
    <br>
    <br>
    <br>//App状态为正在前台或者后台运行,那么此函数将被调用
    <br>
    <br>- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo
    <br>
    <br>{
    <br>
    <br>   
    <br>
    <br>    if (application.applicationState != UIApplicationStateActive)
    <br>
    <br>    {
    <br>
    <br>
    <br>
    <br>        [self presentViewControllerWithUserInfo:userInfo];
    <br>
    <br>       
    <br>
    <br>    }
    <br>
    <br>}
    <br>
    <br>
    <br>
    <br>#pragma mark - 消息跳转页面
    <br>
    <br>- (void)presentViewControllerWithUserInfo:(NSDictionary *)userInfo
    <br>
    <br>{
    <br>
    <br>       //拿出你的消息内容,跳转即可~~
    <br>
    <br>[self.window.rootViewController presentViewController:fyfNavCtrl animated:YES completion:^{
    <br>
    <br>                    //
    <br>
    <br>                }];
    <br>
    <br>}

  • 相关阅读:
    React-Hooks
    RC-Select 学习笔记
    React Strict Mode
    CSSMotion VS animation in Angular
    jquery中has方法
    jquery中对于extend方法的使用
    一篇对于在jquery中使用jsonp技术介绍
    对于table元素的总结
    css3布局相关样式
    移动端去掉按钮点击热区
  • 原文地址:https://www.cnblogs.com/jx66/p/5366094.html
Copyright © 2011-2022 走看看