@IBOutlet weak var firstNotebook: UIView! // Make a ref to the first notebook
@IBAction func addNotebook(_ sender: UIButton) {
let newNotebook = UIView(frame: firstNotebook.frame) // This is making the new notebook using the first ones frame only thing is you would be putting it right over the first one so you need to make a new X position
let newX = firstNotebook.frame.origin.x + 40.0 // I have no idea of how far you want it
newNotebook.frame.origin.x = newX
// So you have a new UIView now, you still need to put it in the superView, the superView is already named view for you
view.addSubview(newNotebook)
}
これはあなたを得ることができますが、正しい方法ではありません。適切な方法は、これを適応させるために制約を加えることですが、それはあなたのためのスタートですGood Luck!
ここにコードを入力 – Govaadiyo
ノートブックとは何ですか?それは見ていますか? –
これを確認してください:https://www.appcoda.com/learnswift/build-your-first-app.html –