찾다

 >  Q&A  >  본문

ios - storyboard页面跳转到代码页面,UINavigationController在代码页面没有成功显示

问题

  1. storyboard跳转到代码界面,UINavigationController在storyboard界面显示,代码界面不显示

代码

我是在AppDelegate里增加UINavigationController

//AppDelegate.swift
let storyboard = UIStoryboard(name:"Main",bundle:nil)
let viewController = storyboard.instantiateViewController(withIdentifier: "LoginViewController")
//let viewController = LoginViewController()
let nav = UINavigationController(rootViewController: viewController)
self.window?.rootViewController = viewController
self.window?.addSubview(nav.view)
self.window?.makeKeyAndVisible()

//统一导航条样式
let textAttributes = [NSFontAttributeName: UIFont.systemFont(ofSize: 19.0), NSForegroundColorAttributeName: UIColor.white]
UINavigationBar.appearance().titleTextAttributes = textAttributes
UINavigationBar.appearance().tintColor = UIColor.white
UINavigationBar.appearance().barTintColor = UIColor.red

在storyboard界面通过该方式跳转

//LoginViewController.swift
let chatListView = SingleChatListViewController()
self.present(chatListView, animated: true, completion: nil)

结果

这个首页是正常的

这个就不对了

伊谢尔伦伊谢尔伦2772일 전448

모든 응답(2)나는 대답할 것이다

  • PHPz

    PHPz2017-04-18 09:56:54

    self.present(chatListView, animated: true, completion: nil)

    self.navigationController?.pushViewController(chatListView , animated: true)
    으로 바꾸면 괜찮습니다
    nav에 표시되는 페이지와 동일한 논리가 아닌 경우 현재를 사용합니다. 이 방법을 사용하시면 됩니다

    회신하다
    0
  • 怪我咯

    怪我咯2017-04-18 09:56:54

    저는 Swift를 사용해본 적이 없는데 잘못된 API를 사용하고 있는 것 같습니다

    으아악

    Self.navigationViewController는 푸시를 사용하여 점프합니다. 현재는 또 다른 점프 방법입니다

    회신하다
    0
  • 취소회신하다