我有一个自定义的UICollectionViewCell子类(MyCell
),它的界面是使用自动布局在Interface Builder中设置的。单元格具有图像视图和标签。
现在,当我配置单元格时,我需要知道图像视图的宽度和高度。听起来很简单,但看起来这是不可能的。
在我的视图控制器中:
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
MyCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"MyCell" forIndexPath:indexPath];
cell.itemNumber = indexPath.item;
return cell;
}
在我的单元子类中,我使用属性的setter来自定义单元格:
- (void)setItemNumber:(NSInteger)itemNumber {
_itemNumber = itemNumber;
self.label.text = [NSString stringWithFormat:@"%i", self.itemNumber];
// In my actual project I need to know the image view's width and hight to request an image
// of the right size from a server. Sadly, the frame is always {{0, 0}, {0, 0}}
// (same for the bounds)
NSLog(@"%@", NSStringFromCGRect(self.myImageView.frame));
}
可以在https://github.com/kevinrenskers/CollectionViewAutoLayoutTest找到完整的示例项目。
所以问题是:我需要知道图像视图的大小,因为我需要让服务器生成正确大小的图像。图像视图的大小为{0,0} ..
我也试图在-layoutSubviews
方法中进行自定义:
- (void)setItemNumber:(NSInteger)itemNumber {
_itemNumber = itemNumber;
}
- (void)layoutSubviews {
if (self.myImageView.frame.size.height) {
self.label.text = [NSString stringWithFormat:@"%i", self.itemNumber];
NSLog(@"%@", NSStringFromCGRect(self.myImageView.frame));
}
}
可悲的是,这更加混乱了。调用该方法两次,首先帧为{{0,0},{0,0}},然后正确设置帧。因此if语句检查高度。一旦你开始滚动,错误的单元格会显示错误的标签。我不明白这里发生了什么。
当您在example project中尝试时,问题可能更有意义。
设置宽度和高度限制并将IBOutlet设置为它听起来是一个很好的选择,但遗憾的是,单元格没有固定的大小,图像需要缩小并与单元格一起增长。删除自动布局也不是一种选择。
答案 0 :(得分:1)
最后,我在imageview上添加了顶部,右边,底部和左边的间距约束(到superview),将IBOutlets添加到它们并使用如下内容:
CGFloat height = self.contentView.bounds.size.height - self.topConstraint.constant - self.bottomConstraint.constant;
CGFloat width = self.contentView.bounds.size.width - self.leftConstraint.constant - self.rightConstraint.constant;