我正在使用 UICollectionView 但未找到以下方法:
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize
请建议我它的替代品。
我正在使用 UICollectionView 但未找到以下方法:
func collectionView(collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAtIndexPath indexPath: NSIndexPath) -> CGSize
请建议我它的替代品。
对我来说sizeForItemAt
没有被调用,因为在 Swift 3 中你需要显式设置你的类来实现UICollectionViewDelegateFlowLayout
协议
这是新的语法:
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize {
}