2017-05-30 78 views
0

如何將時間節省到現有單元格?如何將新數據保存到現有單元格?

1有姓名,電話號碼,公司,職位數..

因爲時間是2頁,我不知道該怎麼做輕鬆地保存它。 有人可以幫我解決這個問題嗎?非常感謝soooo !!!!

NSLocalizedDescription=The operation couldn’t be completed. (Cocoa error 1570.), NSValidationErrorObject=<VisitorMO: 0x60000009c570> (entity: Visitor; id: 0x600000221800 <x-coredata:///Visitor/t47C35BF8-213C-4C00-9B86-DDF5B423B9092> ; data: { 
    company = nil; 
    jobnumber = nil; 
    jobtype = nil; 
    name = nil; 
    phonenumber = nil; 
    signintime = "May 30, 2017, 2:10:23 PM"; 
})} 
) 

enter image description here

+0

我不明白你的問題?你想將數據從一個視圖控制器傳輸到另一個視圖控制器嗎?或者你想在現有的tableview中獲取數據後重新加載單元格? –

+0

嗨Anil Kukadeja,謝謝你的幫助。實際上,我想將新信息更新到現有單元格。 它有一個單元格。 (這個單元格有「名稱」和「時間」,但現在只有名稱)。它缺少時間。 所以我想給這個單元格添加時間。 – Gordon

+0

你想更新collectionview或tableview視圖? –

回答

0

貌似要更新現有的單元格的數據..

你可以做一些事情..

首先yourTableview.reloadData()調用此方法。

這將重新加載你的tableview。

如果您想更新現有小區二 ..

yourTableview.beginUpdates() 
yourTableview.reloadRows(at: [indexPath], with: .automatic) 
yourTableview.endUpdates() 

這裏indexPath將要更新的索引。

更新特定的細胞

let indexPathYouWantToUpdate = IndexPath(row:Any row which you want to update,section:0) 

let cell = yourTableview.cellForRowAtIndex(at:indexPathYouWantToUpdate) as? YourCustomCell 

cell?.value1 = 100 
cell?.value2 = 200 

更新所有的單元格值你所希望的方式。

我希望這能解決你的問題。

+0

@戈登:你檢查了我的答案嗎? –

+1

謝謝sooo多!!!是工作!!! – Gordon

+0

您的歡迎:) –

相關問題