当我在viewDidLoad
方法中调用对象时,我有一个加载了对象的数组。我知道它不是空的,因为当我在viewDidLoad
中调用它时,我能够打印数据和数组的计数。
但是,当我尝试从数组中取出数据并将其放入文本视图时,该数组似乎为空。下面的代码是我尝试将requestList2中的项目添加到tableView:cellForRowAtIndexPath:
中的文本字段的位置。
为什么我的数组在viewDidLoad
中调用数据时会拥有数据,但是当我尝试将其添加到cell.usernameOfRequestSender.text
时却没有?
if (requestList2.count > 0){
var user = requestList2.objectAtIndex(indexPath.row) as! String
cell.usernameOfRequestSender.text = user
}
return cell