"Parse issue expected identifier"
我得到编译器的错误。我不明白有什么问题。该单元格有一个标识符,我想要的只是检索一个指向标签的指针。
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
//UILabel *cellLabel = (UILabel *) [cell viewWithTag:1];
UILabel *cellLabel = [cell.textLabel.text];
我评论的行有效,其中[cell viesWithTag:1]
检索标签为 1 的标签。但我想知道为什么下一行的工作方式不同。该行:
UILabel *cellLabel = [cell.textLabel.text]
谢谢