- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我读过让我的 collectionViewController 成为 UICollectionViewDelegateFlowLayout 的委托(delegate),我已经正确注册了我的单元格, collectionView?.register(ActivityCell.self, forCellWithReuseIdentifier: cellId)
,我已经正确地将单元格取出并归还了它
override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let cell: ActivityCell = collectionView.dequeueReusableCell(withReuseIdentifier: cellId, for: indexPath) as! ActivityCell
return cell
}
但每当我尝试使用 sizeForItemAtIndexPath 函数中的 indexPath 检索单元格时,它不会返回事件单元格
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
if let cell: ActivityCell = self.collectionView?.cellForItem(at: indexPath) as? ActivityCell
{
let approximatewidthofcell = view.frame.size.width - 50
let size = CGSize(width: approximatewidthofcell, height: 1000)
let attributes = [NSFontAttributeName: UIFont.systemFont(ofSize: 15)]
let estimatedframe = NSString(string: cell.activitylabel.text!).boundingRect(with: size, options: .usesLineFragmentOrigin, attributes: attributes, context: nil)
return CGSize(width: view.frame.size.width, height: estimatedframe.height)
}
else
{
return CGSize(width: view.frame.size.width, height: 200)
}
}
If block 总是被忽略,而 else block 每次都执行,我不知道接下来要操作什么代码,请帮助
最佳答案
我有一段时间没有看 Collection View ,但我认为这是一个顺序的事情,这个方法在 cellForItem 之前被调用。另外,你分配数据源了吗?
关于ios - collectionView.cellForItem(在 : indexPath) not working properly,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42605896/
因此 UICollectionViews 公开了方法 cellForItem(at:) ,它允许我们访问 Collection View 中包含的单元格。 我们还知道 collectionView 使
Xcode 8.2.1将 Swift 2.2 迁移到 Swift 3 之后 UICollectionView 的 cellForItem 未正确调用,但在迁移工作正常之前 我有带水平 UICollec
我在函数调用中使用 collectionView.cellForItem: func collectionView(_ collectionView: UICollectionView, didSel
我正在一个基本的 ViewController 中实现一个 UICollectionView (collectionView)我的 Collection View 必须像 numbersofItemI
我在 Storyboard 中创建了一个 collectionView,然后将 Delegate 和 DataSource 方法放入管理该屏幕的 ViewController 的扩展中。 collec
我正在使用 Swift4 和 Xcode9。 我使用下面的委托(delegate)方法创建我的 collectionView 单元格; func collectionView(_ collection
我有两个数组,一个包含字符串,一个包含自定义对象。 我分别创建了两个不同的单元格。我已将两个数组的内容添加到第三个通用数组 Any 中。我在 cellForItem 中使用第三个数组 (combine
如果我尝试通过 cellForItem 获取我的项目,我的 UICollectionViewItem 中将得到 nil。但数据显示在我的 UICollectionView 中。我正在通过远程在我的 U
我读过让我的 collectionViewController 成为 UICollectionViewDelegateFlowLayout 的委托(delegate),我已经正确注册了我的单元格, c
在 Xcode 中,我在 userCell 中创建了一个 var“userImage” - UICollectionViewCell 的子类。 import UIKit class userCell:
我是一名优秀的程序员,十分优秀!