在stroryboard
中,我有UIViewController
,其中包含UITableView
,在其中创建了一个动态UITableViewCell
,并为其指定了标识符。
在UIViewController
方法的cellforrowatindexpath
中,我只是做了[tableView dequeueReusableCellWithIdentifier:CellIdentifier]
。
我不是使用registerClass:forCellReuseIdentifier:
的而不是的,但是我的应用程序运行正常。
没有registerClass:forCellReuseIdentifier:
应用程序如何工作,单元如何完美出队?
最佳答案
该标识符的单元格定义在情节提要中指定,在编译过程中将其转换为NIB,而在取消存档单元格NIB时将其注册到表格视图中。
关于ios - UITableView如何在不使用registerClass:forCellReuseIdentifier的情况下工作:,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30522600/