エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
README.md Spry Experiments in wrapping the iOS SDK in a more Ruby-esque manner. Samples Easily cr... README.md Spry Experiments in wrapping the iOS SDK in a more Ruby-esque manner. Samples Easily create a UITableViewController that leverages NSFetchedResultsController to fetch data: class ArtistsController < Spry::EntityTableViewController entity "Artist" sortBy :name def layoutCell(cell, artist) cell.textLabel.text = artist.name end def selected(artist) puts "You selected #{artist.name}" end end