ios - 以编程方式创建 uicollectionview 时使用自定义 init 方法
<p><p>由于 Storyboard 的限制,我正在以编程方式创建 UICollectionView。这一切正常,当我想添加 <code>UICollectionViewCell</code> 时,我执行以下操作:</p>
<pre><code> forCellWithReuseIdentifier:@"ID"];
</code></pre>
<p>我想知道如何使用“Cell”类中的自定义 init 方法,因为我无法执行以下操作:</p>
<pre><code>init_custom]forCellWithReuseIdentifier:@"ID"];
</code></pre>
<p>问题:如何使用自定义 <code>UICollectionViewCell</code> 类中的自定义 init 方法?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果我理解正确,那么我会为你的 Collection View 单元创建子类。</p>
<p>首先用你想要的一切设置你的单元格。</p>
<pre><code>@interface MyCollectionViewCell : UICollectionViewCell
// Your custom cell
@end
@implementation MyCollectionViewCell
// Your custom cell
@end
</code></pre>
<p>然后为每个 Collection View 创建一个仅覆盖 init 的子类。</p>
<pre><code>@interface MyCollectionViewCellForCollectionView1 : MyCollectionViewCell
@end
@implementation MyCollectionViewCellForCollectionView1
- (instancetype)init // Only override -init
{
self = ;
if (self) {
// Setup for collection view one
}
return self;
}
@end
@interface MyCollectionViewCellForCollectionView2 : MyCollectionViewCell
@end
@implementation MyCollectionViewCellForCollectionView2
- (instancetype)init // Only override -init
{
self = ;
if (self) {
// Setup for collection view two
}
return self;
}
@end
</code></pre>
<p>然后,为每个不同的 Collection View 注册一个子类。</p>
<pre><code> forCellWithReuseIdentifier:@"ID"];
forCellWithReuseIdentifier:@"ID"];
</code></pre>
<p>这将为您提供所需的单独自定义 init 方法,但请确保将所有功能保留在基类中。</p></p>
<p style="font-size: 20px;">关于ios - 以编程方式创建 uicollectionview 时使用自定义 init 方法,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/28252912/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/28252912/
</a>
</p>
页:
[1]