为什么此代码返回一个单元格?
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
但是当我试图用它获取细胞时,
[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]]
它不会返回任何东西。有谁知道这怎么可能?