0
編譯器出現錯誤"Parse issue expected identifier"
。我不明白是什麼問題。單元格有一個標識符,我只需要檢索一個指向標籤的指針。爲什麼cell.textLabel.text需要一個標識符?
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]
感謝