0
我使用核心數據,swift 3使用macOS。swift 3 - 核心數據關係 - 獲取數據
- 我不得不實體:人與書籍
- 我可以創造一個人
- 我可以創建一本書,將分配給一個人
- ,我知道我能得到相關信息,這本書是分配給哪個人與這段代碼在最後
但我怎麼能得到哪些人有哪些書的信息?
更多的細節在我的最後一個職位:swift 3 - create entry with relationship
非常感謝你:)
let appdelegate = NSApplication.shared().delegate as! AppDelegate
let context = appdelegate.persistentContainer.viewContext
var books = [Book]()
let request = NSFetchRequest<NSFetchRequestResult>(entityName: "Book")
do {
books = try context.fetch(request) as! [Book]
} catch { }
for book in books {
print("Title: \(book.title!)")
print("Person: \(book.person!.name!)")
}
我喜歡這裏 - 非常感謝你:) – Ghost108