Menu
Newbedev LogoNEWBEDEV Python Javascript Linux Cheat sheet
Newbedev LogoNEWBEDEV
  • Python 1
  • Javascript
  • Linux
  • Cheat sheet
  • Contact

Crash Xcode 11, iOS13 setting root view controller

    let homeVC = UIStoryboard(name:"Main", bundle: nil).instantiateViewController(withIdentifier: "SigninViewController") as! SigninViewController
    let navC = UINavigationController(rootViewController: homeVC)
    navC.navigationBar.isHidden = true
    UIApplication.shared.windows.first?.rootViewController = navC
    UIApplication.shared.windows.first?.makeKeyAndVisible()

try this it is working Fine in my case..

Tags:

Objective C

Xcode11

Ios13

Related

Should $null be on the left side of the equality comparison? (-eq with arrays) Do id primary key have to be explicitly defined in Django models generated from inspectdb against an existing database? Adding an additional dimension to an array The following options were not recognized by any processor: '[kapt.kotlin.generated, room.incremental]' Gradle sync failed: Unsupported method: KotlinPlatformContainer.supports() Debugging sporadic app crashes with dylib in iOS13/iPadOS 13 What's the net::ERR_HTTP2_PROTOCOL_ERROR about? Svelte 3 - How to loop each block X amount of times How to make flutter card auto adjust its height depend on content ios - where to put s.static_framework = true How to exit the elm repl? Chrome Console SameSite Cookie Attribute Warning

Recent Posts

Pandas how to find column contains a certain value Recommended way to install multiple Python versions on Ubuntu 20.04 Build super fast web scraper with Python x100 than BeautifulSoup How to convert a SQL query result to a Pandas DataFrame in Python How to write a Pandas DataFrame to a .csv file in Python
© 2021 newbedevPrivacy Policy