繁体   English   中英

不使用故事板时,Xcode 在捆绑 NSBundle 中找不到名为“Main”的故事板

[英]Xcode Could not find a storyboard named 'Main' in bundle NSBundle when not using storyboards

我正在尝试仅使用代码创建 UIButton。 我通过 SIGABORT 收到了这条消息,但我没有使用主故事板。 我不确定是否还有主故事板的元素。

我应该如何解决这个问题?

override func viewDidLoad() {
    super.viewDidLoad()

    let button:UIButton = UIButton(frame: CGRect(x: 340, y: 10, width: self.view.frame.width, height: self.view.frame.height / 4))
    button.backgroundColor = .white
    button.setTitle("filter", for: .normal)
    button.setTitleColor(.blue, for: .normal)
    button.addTarget(self, action: #selector(pushButton), for: .touchUpInside)
    self.view.addSubview(button)
}

@objc func pushButton(sender: UIButton){
    print("button pushed")
}

如果你有 XCode 11+,你需要在 SceneDelegate 上设置 rootViewController 并且你可以这样做:

class SceneDelegate: UIResponder, UIWindowSceneDelegate {

var window: UIWindow?

func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {

    guard let windowScene = (scene as? UIWindowScene) else { return }
    window = UIWindow(frame: windowScene.coordinateSpace.bounds)
    window?.windowScene = windowScene
    self.window?.rootViewController = YourViewController() //UINavigationController(rootViewController: YourViewController()) this if you want your controller to be inside navigation.
    window?.makeKeyAndVisible()
}

func sceneDidDisconnect(_ scene: UIScene) {
    // Called as the scene is being released by the system.
    // This occurs shortly after the scene enters the background, or when its session is discarded.
    // Release any resources associated with this scene that can be re-created the next time the scene connects.
    // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead).
}

func sceneDidBecomeActive(_ scene: UIScene) {
    // Called when the scene has moved from an inactive state to an active state.
    // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive.
}

func sceneWillResignActive(_ scene: UIScene) {
    // Called when the scene will move from an active state to an inactive state.
    // This may occur due to temporary interruptions (ex. an incoming phone call).
}

func sceneWillEnterForeground(_ scene: UIScene) {
    // Called as the scene transitions from the background to the foreground.
    // Use this method to undo the changes made on entering the background.
}

func sceneDidEnterBackground(_ scene: UIScene) {
    // Called as the scene transitions from the foreground to the background.
    // Use this method to save data, release shared resources, and store enough scene-specific state information
    // to restore the scene back to its current state.
}

}

您还需要从目标常规设置中删除“主界面”字段,检查下图:

在此处输入图片说明

@Adriatik Gashi 说的是对的,之后只有一件事要做:

plist文件中转到:

打开Application Scene Manifest

  1. 打开Scene Configuration
  2. 打开`应用程序会话角色
  3. 打开item 0
  4. 删除StoryBoard name

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM