gpt4 book ai didi

ios - 为什么我的首页在 Xcode 中显示为这样?

转载 作者:行者123 更新时间:2023-11-29 05:25:08 27 4
gpt4 key购买 nike

enter image description here

我编写了代码,但我不明白为什么我的第一页显示如下:

enter image description here

enter image description here

在此输入代码导入 UIKit

类 FirstViewController:UIViewController {

@IBOutlet weak var tableView: UITableView!


override func viewDidLoad() {
super.viewDidLoad()

// Do any additional setup after loading the view.
}

@IBAction func onAddTapped(_ sender: Any) {

let alert = UIAlertController( title: "Post Something", message: "what would you like to post?",preferredStyle: .alert)
alert.addTextField{(textField) in textField.placeholder = "Enter Message here"}

let cancel = UIAlertAction(title: "Cancel" , style: .cancel, handler:nil)
let post = UIAlertAction(title: "Post", style: .default){
_ in guard let text = alert.textFields?.first?.text else{return}
print(text)
}
alert.addAction(cancel)
alert.addAction(post)
present(alert, animated: true, completion: nil)



}

最佳答案

Xcode 中的默认基本应用程序使用 Main.storyboard 作为入口点。 Main.storyboard 有一个 View Controller ,默认情况下将 Hello World 显示为初始 View Controller 。如果您编写了自己的 View Controller ,则可以转到 Storyboard编辑器右上角的身份检查器,并将 ViewController.swift 更改为编写 View Controller 代码的文件。

关于ios - 为什么我的首页在 Xcode 中显示为这样?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58244272/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com