所以我打开了游乐场,我只是想添加一个简单的UIButton(或简单的UIView)用于测试目的.我不能让它显示.这是我到目前为止: import UIKitvar uiButton = UIButton.buttonWithType(UIButtonType.System) as UIButto
import UIKit var uiButton = UIButton.buttonWithType(UIButtonType.System) as UIButton uiButton.frame = CGRectMake(0, 0, 100, 100) uiButton.setTitle("Test", forState: UIControlState.Normal); //self.view.addSubview(uiButton) <-- doesn't work
你们知道我做错了吗?谢谢
我想你可以在游乐场添加按钮,你的代码是正确的,当你点击快速查看时,你可以看到你的按钮:或者您可以通过单击“值历史记录”来查看该按钮:
你不需要将其添加到视图中.