Realm설치 및 오류해결
작성일
1.터밀널을 열고 프로젝트위치에 [pod init] 프로젝트에 cocoaPod 설치.
2.[open Podfile -a Xcode] xcode로 podfile 열기
3.podfile안에서 [pod ‘RealmSwift’]를 적고
4.터미널로 돌아가 [pod install] 해서 설치하기
간단한 사용법
- 클래스생성 ~~~ import Foundation import RealmSwift
class Data: Object { @objc dynamic var name: String = “” @objc dynamic var age: Int = 0 }
2. AppDelegate안에
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
//파일 경로를 확인하기 위한 pirnt문 잘되어있는지 확인 print(Realm.Configuration.defaultConfiguration.fileURL)
let data = Data()
data.name = "Angela"
data.age = 12
do {
let realm = try Realm()
try realm.write {
realm.add(data)
}
} catch {
print("Error initialising new realm, \(error)")
}
return true ~~~ 작성하면 끝!
!!앱스토어에서 RelamBrowser를 다운받았는데 encryption key을 요구한다면?!
https://studio-releases.realm.io/latest/download/mac-dmg 위 링크를 눌러서 다운받으시면 됩니다!!