iPhone:有没有办法 loadFromNib 并有一个reuseIdentifier?

发布于 2024-08-12 02:46:50 字数 266 浏览 9 评论 0原文

我现在思考这个问题很长时间。

我尝试在表中使用不同类型的单元格,每个单元格都有自己的单元格控制器,并有一个重用标识符和来自 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷月断魂刀 2024-08-19 02:46:50

提出问题有时可以引导您走上正轨: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

迷爱 2024-08-19 02:46:50

我希望您正在使用自定义的 UITableViewCellreuseIdentifier 是只读属性,因此您无法设置它,但有两种方法,

1)在 Interface Builder 中打开自定义笔尖并设置 identifier 属性并使用与以下相同的字符串调用dequeueReusableCellWithIdentifier时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 as reuseIdentifier while calling dequeueReusableCellWithIdentifier.

2) Pass reuseIdentifier in constructor of you nib file and then call its base constructor there which takes style and identifier as arguments.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文