我有以下代码来显示一个简单的按钮:
button = UIButton.buttonWithType(UIButtonTypeRoundedRect)
button.center = CGPointZero
button.frame = [[container.width/2-button.frame.size.width/2,150], [280,50]]
button.setTitle("Categorize New Project", forState: UIControlStateNormal)
button.addTarget(self,
action: "moveToChildView:",
forControlEvents: UIControlEventTouchUpInside)
当我在 6.1 的模拟器 iPhone 视网膜(3.5 英寸)中运行这个应用程序时,它看起来像这样:
但是,当我在模拟器 iPhone 视网膜 7.0 中运行它时,它看起来像这样:
此代码是否需要更改才能在 7.0 中正常工作?