在ios swift coredata中获取相关数据

Posted

技术标签:

【中文标题】在ios swift coredata中获取相关数据【英文标题】:getting related data in ios swift coredata 【发布时间】:2018-09-07 07:49:04 【问题描述】:

我正在使用核心数据保存 2 个表信息,一个是 Customer,另一个是 Booked Tickets。一位顾客可以预订多张门票。我想获取这些相关数据并填充到表格视图中。我正在获取所有票证数据,但我想要特定用户的票证信息。例如 users.ticket.passangerName。但我在这里得到了零。

import UIKit
import CoreData

class BookHistoryVC: UIViewController 

    @IBOutlet weak var tableView: UITableView!

var tickets: [BookedTickets]? 
    didSet
        tableView.reloadData()
    

var users: [Customer] = []

override func viewDidLoad() 
    super.viewDidLoad()

    tableView.delegate = self
    tableView.dataSource = self
    // Do any additional setup after loading the view.

    self.fetch  (complete) in
        if complete 
            guard  let tickets = tickets else 
                return
            
            if (tickets.count) >= 1 
                //tableView.isHidden = false
                print(tickets as Any)
             else 
                return
            

         else 
            //tableView.isHidden = true
        
    //Fetch Complete



override func viewWillAppear(_ animated: Bool) 
    super.viewWillAppear(animated)





override func didReceiveMemoryWarning() 
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.


func fetch(completion: (_ complete : Bool) -> ()) 
    guard let managedContext = appDelegate?.persistentContainer.viewContext else  return 

    let fetchRequest1 = NSFetchRequest<NSFetchRequestResult>(entityName: "Customer")
    let fetchRequest2 = NSFetchRequest<NSFetchRequestResult>(entityName: "BookedTickets")

    do 
        users = try managedContext.fetch(fetchRequest1) as! [Customer]

        tickets = try ((managedContext.fetch(fetchRequest2) as? [BookedTickets]))
        print("Succesfully Fetched")
        tableView.reloadData()
        completion(true)
     catch  
        debugPrint("Could Not Fetch:\(error.localizedDescription)")
        completion(false)
    




   



extension BookHistoryVC: UITableViewDelegate, UITableViewDataSource
    func numberOfSections(in tableView: UITableView) -> Int 
            return 1
        

        func tableView(_ tableView: UITableView, numberOfRowsInSection 

section: Int) -> Int 
        guard  let tickets = tickets else 
            return 0
        
        return tickets.count
    

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 

    guard let cell = tableView.dequeueReusableCell(withIdentifier: "BookHistoryVCCell", for: indexPath) as? BookHistoryVCCell else  return UITableViewCell()

    guard  let tickets = tickets else 
        return UITableViewCell()
    

    let ticket = tickets[indexPath.row]
    cell.configureCell(ticket: ticket)

    return cell




 func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat 
        return 400
    



在单元格中...

import UIKit

class BookHistoryVCCell: UITableViewCell 

    @IBOutlet weak var bookerNameLabel: UILabel!
    @IBOutlet weak var ageLabel: UILabel!
    @IBOutlet weak var passangerNameLabel: UILabel!
@IBOutlet weak var ticketNumberLabel: UILabel!
@IBOutlet weak var fromLabel: UILabel!
@IBOutlet weak var toLabel: UILabel!
@IBOutlet weak var createdLabel: UILabel!

var jsonNamesArr: [Any] = []
var jsonAgesArr: [Any] = []
var details = ""

func configureCell(ticket: BookedTickets) 

    let fullNames: String  = ticket.passangerName!
    let dataNameArray = fullNames.data(using: .utf8)
    let fullAges: String = ticket.age!
    let dataAgeArray = fullAges.data(using: .utf8)

    do 
        if let jsonNameArray = try JSONSerialization.jsonObject(with: dataNameArray!, options: .allowFragments) as? [Any] 
                jsonNamesArr = jsonNameArray
                print(jsonNameArray)
            
         catch 
            //            #error()
            print("Error")
        

        do 
            if let jsonAgeArray = try JSONSerialization.jsonObject(with: dataAgeArray!, options: .allowFragments) as? [Any] 
                jsonAgesArr = jsonAgeArray
                print(jsonAgeArray)
            
         catch 
            print("Error")
        

        for (name, age) in zip(jsonNamesArr, jsonAgesArr) 
            details = details + ("\(name) of \(age)\n")
            print("\(name): \(age)")
        

        self.bookerNameLabel.text! = Utilities.getUserName()
        //self.ageLabel.text! = "Ages: \(ticket.age!)"
        self.passangerNameLabel.text! = "Passangers Details:\n\(details)" 
        self.fromLabel.text! = "From: \(ticket.fromDestination!)"
        self.toLabel.text! = "To: \(ticket.toDestination!)"
        self.createdLabel.text! = "Booked Date: \(ticket.created_at!)"
    self.ticketNumberLabel.text! = "Ticket Number: \(ticket.uniqueTicketNumber!)"



我的桌子图片..

【问题讨论】:

你能检查你在获取请求中得到的数据吗? 您不需要获取门票的请求;如果您有客户,您只需访问Customer 实体的tickets 属性即可获得他们预订的门票。 感谢您的回复。但是当我尝试使用 customer.ticket.propertyName 时,我得到了空值。你能给我建议如何获得它吗? 【参考方案1】:

您需要一个谓词进行过滤,例如,您要查找customer 中的name 是John Doe 的所有票证

let fetchRequest2 = NSFetchRequest<NSFetchRequestResult>(entityName: "BookedTickets")
let name = "John Doe"
fetchRequest2.predicate = NSPredicate(format: "customer.name = %@", name)

并且在fetch 中不需要使用完成块。 Core Data 方法fetch(_ request: NSFetchRequest)同步工作

【讨论】:

感谢您的回复。我已经按照你的建议设置了谓词,但现在我的 tableview 没有显示数据 核心数据获取是否返回了一些东西?顺便说一句,如果您将数据源数组声明为非可选的,您可以摆脱大量冗余代码。并强制解开as! BookHistoryVCCell。除非您犯了设计错误,否则代码不得崩溃。 我在 ticketTable 中将客户设为 nil【参考方案2】:

我的客户为零,因为我没有在客户对象中添加票证对象。为此,我创建了单例类并创建了客户属性。

import Foundation

class Singleton 

   static var user: Customer!


并将客户对象分配给登录页面中的单例属性。

//Singleton 
                        Singleton.user = user

现在单例对象携带当前用户对象。在保存票务详细信息时添加此行Singleton.user.addToTickets(ticket) You can refer this link https://github.com/learnasucan/BookTicket.git

【讨论】:

以上是关于在ios swift coredata中获取相关数据的主要内容,如果未能解决你的问题,请参考以下文章

在CoreData ios swift3中只获取表的几个属性

如何在 swift 中使用 MR 从 coreData 中获取数据

在库中使用 Swift 在 CoreData 中获取 nil managedObjectContext

iOS swift:使用 coredata (cloudkit) 存储缓存

如何使用 Swift 从 CoreData sqlite 表中获取特定的行数据

Swift 3 / iOS 10,正确使用核心数据