.save

セーブがしたいんです…

2017-05-27から1日間の記事一覧

railsとswiftを連携させる練習

参考 github.com 詰まり 以下のコードをどこに挟むのかがわからず。 TweetsViewController.swiftに挟むと以下のエラー。 エラーメッセージ Method does not override any method from its super class override func numberOfSectionsInTableView(tableView:…

ruby silver 勉強記録 (4日目)

・学習内容 1、find_allとselect 配列の検索。 enum.find_all {|item| block } enum.select {|item| block } find_allメソッドは、条件に合う要素を探して集めます。ブロック引数itemに要素を入れながらブロックを繰り返し、ブロックの戻り値が真になったと…