• 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>}

  • 相关阅读:
    Python 多核 多线程 调度
    mysql-select for update
    Python logging模块
    TCP/IP和HTTP协议与Socket的区别联系
    DNS+CDN
    wget命令
    Cannot find module 'webpack-cli/bin/config-yargs
    TS7015: Element implicitly has an 'any' type because index expression is not of type 'number'
    js 创建私有变量
    报错集锦及解决方案
  • 原文地址:https://www.cnblogs.com/jx66/p/5366094.html
Copyright © 2020-2023  润新知