我的新应用程序遇到问题。我开发了很多应用程序,但这是我第一次遇到这个问题。为了测试我的应用程序,我正在使用Apple iPad Mini 4。 我有一个新的空项目。我只添加了一个UIButton。但是,当我构建这个项目,成功构建,并且应用程序正在运行时,2秒后UIButton就会消失。当我使用iPad或iPhone模拟器时,按钮永远存在。没有错误出现,所以我真的不知道,发生了什么。有类似问题的人吗?
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@IBAction func example(_ sender: UIButton) {
print("Hello")
}
}
答案 0 :(得分:0)
我尝试了同样的事情,但工作正常......没有问题。 你说的是不可能的,这是不可能的。
只有将按钮放在LaunchScreen中的某个位置才有可能。 如果您在启动屏幕上显示按钮,您仍然可以向ViewController添加操作,但无法添加插座。
验证此事并告诉我。