Skip to content

Instantly share code, notes, and snippets.

@niwatako
Created August 6, 2016 04:18
Show Gist options
  • Save niwatako/56e34600f55a5427e3eb7d173d3bb372 to your computer and use it in GitHub Desktop.
Save niwatako/56e34600f55a5427e3eb7d173d3bb372 to your computer and use it in GitHub Desktop.
didFinishLaunchingWithOptions の中でRealmインスタンスを作ります #CodePiece #realm_swift #realm_jp
import UIKit
import RealmSwift
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
let realm = try! Realm()
print(realm)
return true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment