iPhone:有没有办法 loadFromNib 并有一个reuseIdentifier?
我现在思考这个问题很长时间。
我尝试在表中使用不同类型的单元格,每个单元格都有自己的单元格控制器,并有一个重用标识符和来自 NIB 的负载。
问题归结为:您可以通过以下方式初始化单元 [UITableViewCell initWithStyle:reuseIdentifier:] 或通过 [NSBundle loadNibNamed:owner:options:]。
我是否忽略了某些内容,或者是否有可能两者兼而有之:从笔尖加载并使用reuseIdentifier?
I am thinking about this problem now for very long.
I try to use different types of cells in my table, that each have their own cell controller and have a reuseIdentifier AND load from NIB.
The problem boils down to this: You can either init a Cell via
[UITableViewCell initWithStyle:reuseIdentifier:] or via [NSBundle loadNibNamed:owner:options:].
Do i overlook something or is there a possibility to have both: load from nib and use reuseIdentifier?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提出问题有时可以引导您走上正轨:I
答案可以在这里找到: https://discussions.apple.com/thread/1664267?threadID=1664267
Asking a question can sometimes lead you to the right track :I
The answer can be found here: https://discussions.apple.com/thread/1664267?threadID=1664267
我希望您正在使用自定义的
UITableViewCell
。reuseIdentifier
是只读属性,因此您无法设置它,但有两种方法,1)在 Interface Builder 中打开自定义笔尖并设置
identifier
属性并使用与以下相同的字符串调用dequeueReusableCellWithIdentifie
r时reuseIdentifier
。2)在nib文件的构造函数中传递
reuseIdentifier
,然后在那里调用它的基本构造函数,该构造函数将样式和标识符作为参数。I am hopping you are using customized
UITableViewCell
.reuseIdentifier
is readonly property so you couldn't set it but there are two ways,1) Open your custom nib in Interface Builder and set
identifier
property and use this same string asreuseIdentifier
while callingdequeueReusableCellWithIdentifie
r.2) Pass
reuseIdentifier
in constructor of you nib file and then call its base constructor there which takes style and identifier as arguments.