我们有一个 UICollectionView
,它在 Storyboard 上有一个原型(prototype)单元格。单元格中有一个 UILabel
("label
"),它在没有自动布局的情况下定位。
我们在 -collectionView:cellForItemAtIndexPath:
中使用 setFrame 有条件地设置标签的框架,如下所示:
- (UICollectionViewCell *)collectionViewUICollectionView *)collectionView
cellForItemAtIndexPathNSIndexPath *)indexPath
{
CategoryCell *cell;
cell = [collectionView dequeueReusableCellWithReuseIdentifier"Category" forIndexPath:indexPath];
...
if (self.isViewTypeList) {
[((CategoryCell *)cell).label setFrame:FRAME_RECT];
}
...
return cell;
}
我们已经检查过了,它似乎首先在到达出队时使用 Storyboard 值调用标签的 -setFrame:
,然后我们的代码如下,这设置了新的帧正确。除了这些之外,没有其他调用,但标签仍保留在屏幕上的原始位置。
怎么了?为什么新框架设置不正确?是不是其他的东西压倒了它?我是否必须以某种方式重新布局或刷新它?
从 xib 取消选中自动布局。改变框架可能会有所帮助。
关于ios - 更改 UICollectionViewCell 中的标签位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20686778/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |