Guest User

Untitled

a guest
Sep 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. func recordSelect(){
  2.  
  3. //Realmの初期化
  4. let realm = try! Realm()
  5.  
  6. // Realmに保存されてるApiRequest型のオブジェクトを全て取得
  7. // .filterで検索条件を指定できる。
  8. let users = realm.objects(User.self).filter("userid contains 'hogehoge'")
  9.  
  10. // 取得データを標準出力
  11. for user in users {
  12. print("userid: \(user.userid)")
  13. }
  14. }
Add Comment
Please, Sign In to add comment