如何通过代码 - Objective-C从表中删除nib(xib)

时间:2021-03-05 19:57:46

I load a xib file using

我使用加载一个xib文件

[self.tableView registerNib:[UINib nibWithNibName:@"HelpDeskCell" bundle:nil] forCellReuseIdentifier:@"Cell"];

and was wondering if it is possible to remove it from the table through code.

并想知道是否可以通过代码将其从表中删除。

1 个解决方案

#1


1  

From Apple's Docs (always a good first place to look):

来自Apple的Docs(总是很好看的第一个地方):

You may specify nil for nib if you want to unregister the nib from the specified reuse identifier.

如果要从指定的重用标识符取消注册nib,则可以为nib指定nil。

https://developer.apple.com/documentation/uikit/uitableview/1614937-registernib

https://developer.apple.com/documentation/uikit/uitableview/1614937-registernib

#1


1  

From Apple's Docs (always a good first place to look):

来自Apple的Docs(总是很好看的第一个地方):

You may specify nil for nib if you want to unregister the nib from the specified reuse identifier.

如果要从指定的重用标识符取消注册nib,则可以为nib指定nil。

https://developer.apple.com/documentation/uikit/uitableview/1614937-registernib

https://developer.apple.com/documentation/uikit/uitableview/1614937-registernib