我能够用CloudKit(var restaurants: [CKRecord] = []
)中的记录填充TableViewController A,但不确定如何将[CKRecord]的子集传递到TableViewController B上,因为这两个控制器都有动态原型单元,并且各自的视图单元定义为as UITableViewCell
。此外,仅当用户点击TableViewController A上的导航项时才触发segue(而不是在选择单元格时)。
这是我实现cellForRowAt的方式
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "dataCell", for: indexPath) as! RestuarantViewCell
// Configure the cell...
let restaurant = restaurants[indexPath.row]
cell.RestNameLabel?.text = restaurant.object(forKey: "name") as? String
cell.RestDescLabel?.text = restaurant.object(forKey: "desc") as? String
if let image = restaurant.object(forKey: "image"), let imageAsset = image as? CKAsset {
if let imageData = try?Data.init(contentsOf: imageAsset.fileURL) {
cell.RestImageView?.image = UIImage(data: imageData)
}
}
return cell
}
用户进行前导滑动时,将该项目添加到列表(
var list: [CKRecord] = []
)覆盖func tableView(_ tableView:UITableView,LeadingSwipeActionsConfigurationForRowAt indexPath:IndexPath)-> UISwipeActionsConfiguration? {
let addAction = UIContextualAction(style: .normal, title: "Save") { (action, sourceView, completionHandler) in
//Add to list
self.list.append(self.restaurants[indexPath.row])
print(self.list)
//Delete row and reload tableView i.e. tableView.reloadData()
self.tableView.deleteRows(at: [indexPath], with: .fade)
//Call completion handler to dismiss the action button
completionHandler(true)
}
//Configuring delete button
addAction.backgroundColor = UIColor(red: 76, green: 217, blue: 100)
//Create button for user swipe
let swipeConfiguration = UISwipeActionsConfiguration(actions: [addAction])
return swipeConfiguration
}
仅当用户点击TableViewController A上的导航项时此列表才可见(在选择单元格时不可见)。 Segue
"showList"
已在从导航项到TableViewController B的情节提要中实现。简而言之,TableViewController B是从TableViewController A保存的餐厅(名称,图像)的列表
我应该使用
func prepare(for segue: UIStoryboardSegue, sender: Any?)
还是将其刷卡保存到云中并在TableViewController B中再次获取?感谢您的时间和建议!
最佳答案
是的,正如您提到的,我将使用prepare for segue
。使restaurants
数组成为表A
和表B
的类属性。
像这样:
//Table View Controller A
class TableViewA: UIViewController{
var restaurants = [CKRecord]()
override func prepare(for segue: NSStoryboardSegue, sender: Any?) {
if segue.identifier == "NameThisInYourStoryboard"{
let vc = segue.destinationController as! TableViewB
vc.restaurants = self.restaurants //Pass the data
}
}
}
//Table View Controller B
class TableViewB: UIViewController{
var restaurants = [CKRecord]()
}
所有这些都前提是您设置了控制器的委托和数据源,并从
A
的表行水龙头显示表B
在情节提要中定义了序列。关于ios - 使用动态原型(prototype)单元在Segue上将CloudKit记录从TableViewController A传递到TableViewControllerB,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53055680/