search

Home  >  Q&A  >  body text

objective-c - object-c中有些方法基类找不到,但是重写了竟然有效是为什么。

比如UICollectionViewController里面重写了

- (CGSize)collectionView:(UICollectionView *)collectionView 
                  layout:(UICollectionViewLayout*)collectionViewLayout 
  sizeForItemAtIndexPath:(NSIndexPath *)indexPath

这个方法用来动态修改cell的size,但是这个方法在基类,在delegate都没找到,却会被调用,这是怎么回事。
还有现在我遇到的一个问题是,这个方法被调用了,但是cell的size还是没有被动态修改又是为什么?

PHPzPHPz2763 days ago565

reply all(1)I'll reply

  • 怪我咯

    怪我咯2017-04-27 09:05:21

    This method is in protocol UICollectionViewDelegateFlowLayout里,并不是UICollectionViewDelegate.
    The second question is not clear

    reply
    0
  • Cancelreply