Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
图片:http: //i.stack.imgur.com/8FgLp.png
原型单元格属于“ArticleCell”类,但它不允许我将标签连接到它。为什么?
在视图控制器的类中不能有标签的出口,你只能在 UITableViewCell 的子类中这样做。在 ViewController 类中使用插座是行不通的,因为如果您有一个人口众多的表,该标签可能存在 1000 次。要么你需要让它成为一个静态单元格(在这种情况下标签只存在一次,你可以给它一个出口),或者你应该使用 viewWithTag 属性访问(即在界面构建器中设置它的标签,然后访问它稍后在代码中)。