我创建了一个自定义单元类,用于从firebase获取数据。一切都运行正常但发生的事情是添加新数据时,显示在底部而不是顶部。在我提到的代码中,将新项目插入索引路径0.仍然代码不起作用
这是代码..
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UITextFieldDelegate {
@IBOutlet weak var save: UIButton!
@IBOutlet weak var table: UITableView!
var firebase = Firebase(url: "https://meanwhile.firebaseio.com")
var messages = [String]()
var uid:String = ""
override func viewDidLoad() {
super.viewDidLoad()
var localArray = [String]()
firebase.observeEventType(.ChildAdded, withBlock: { snapshot in
//print(snapshot.value)
let msgText = snapshot.value.objectForKey("text") as! String
localArray.insert(msgText, atIndex: 0)
self.messages = localArray
self.table.reloadData()
}
}
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return messages.count
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.table.dequeueReusableCellWithIdentifier("Vish", forIndexPath: indexPath) as! CustomTableViewCell
let fdata = self.messages[indexPath.item]
cell.data.text = fdata as? String
return cell
}
}
答案 0 :(得分:0)
我在这里看不到代码,但是你提到你正在使用自定义表格单元来加载数据。
如果要在CustomTableViewCell
类中加载数据,则必须非常小心如何执行此操作,或者将单元格的数据加载移动到其他位置。
这是因为dequeueReusableCellWithIdentifier
。 UITableView
不会为表的任何行创建UITableViewCell
,而是维护一个较小的单元队列,它会重用它来减少内存使用并提高性能。
返回的UITableViewCell对象通常是应用程序因性能原因而重用的对象。
检查您是否正在共享状态(您不希望如此)和/或在CustomTableViewCell
内部存在竞争条件。
这些错误通常表现为表格视图数据出现在错误的单元格中。