0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

swift入門の為のメモ

Last updated at Posted at 2019-10-24

実際には運用するアプリの制作入門としてのメモを随時記載

1、まずはメニュー有りき

// SubViewController へ遷移するために Segue を呼び出す
        
    performSegueWithIdentifier("showDetailView",sender: nil)

// Segueで遷移時の処理
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject!) {
    if (segue.identifier == "showDetailView") {
        let secondVC: ViewController4 = (segue.destinationViewController as? ViewController4)!
        
        // showDetailViewのtextに選択した文字列を設定する
        print("segue")
        print(view.frame.height)
        //secondVC.itemid = selectedText
        
        
    }
}

2、アプリ内記憶処理

3、sqlite3の利用

4、サーバーサイドのシステムとの連動

5、サーバーサイドデーター利用

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?