2017-09-25 30 views
-7

a screenshot of my viewcontrollerXcode Swift:UIButtonを作成して新しいオブジェクトを作成するには?

新しいノートブックをクリックするたびに右上に「新しいノートブックを追加」ボタンが表示されます。新しいノートブックを適切な場所に置いてもらいたい。私はまだコードを書いていない、私はどのようにこれをコーディングを開始することも考えていない。私はボタンのIBActionを作成しなければならないことを知っていますが、私は次のステップが何か分かりません。

皆さん、ありがとうございました。ありがとうございます。

+0

ここにコードを入力 – Govaadiyo

+0

ノートブックとは何ですか?それは見ていますか? –

+0

これを確認してください:https://www.appcoda.com/learnswift/build-your-first-app.html –

答えて

0
@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!

関連する問題