UICollectionView.h 216 B

123456789101112
  1. #ifdef __IPHONE_6_0
  2. #include_next <UIKit/UICollectionView.h>
  3. #else
  4. #import "UICollectionViewCell.h"
  5. @interface UICollectionView : UIView
  6. - (NSIndexPath *)indexPathForCell:(UICollectionViewCell *)cell;
  7. @end
  8. #endif