我有一个NSMutableArray(array2)作为表视图的数据源。当我选择searchResultsTableView的单元格并使用该数组重新加载self.tableView时,我想向该数组添加对象。
如果我使用array2.addObject()方法添加对象,那么所有单元格都可以使用单个数据。
但是,如果我用array2.insertObject(myObject,atIndex:0)添加对象,那么所有单元格都显示与array2 [0]的数据相同的数据。为什么?
我的问题是在表视图的didSelectRowAtIndexPath函数中。我总是想在我的表视图的第一个位置添加所选对象,这就是我用insertObject方法而不是addObject方法实现的原因。下面是我的代码部分。
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if tableView == self.searchDisplayController!.searchResultsTableView {
return self.array1.count
}else{
return self.array2.count
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = UITableViewCell()
if tableView == self.searchDisplayController!.searchResultsTableView {
let number = self.array1[indexPath.row]
cell.textLabel?.text = String(number)
} else {
let cell: customCell = self.tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as customCell
let brand = self.array2[indexPath.row] as NSString
cell.name.text = brand
cell.comment.text = "100"
}
return cell
}
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
if tableView == self.searchDisplayController!.searchResultsTableView {
let cell = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell!
self.array2.insertObject(cell.textLabel!.text!, atIndex: 0)
//self.array2.addObject(cell.textLabel!.text!)
self.searchDisplayController!.setActive(false, animated: true)
self.tableView.reloadData()
}
}
答案 0 :(得分:2)
你的cellForRowAtIndexPath方法很奇怪!...你总是返回“让cell = UITableViewCell()”并且实际上并不是你出列的“单元格”
将您的方法更改为:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
if tableView == self.searchDisplayController!.searchResultsTableView {
let number = self.array1[indexPath.row]
let cell = UITableViewCell()
cell.textLabel?.text = String(number)
return cell
} else {
let cell: customCell = self.tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as customCell
let brand = self.array2[indexPath.row] as NSString
cell.name.text = brand
cell.comment.text = "100"
return cell
}
}