mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-13 14:59:23 +00:00
9 lines
368 B
Objective-C
9 lines
368 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface UICollectionView (Utils)
|
|
|
|
- (NSArray *)indexPathsForElementsInRect:(CGRect)rect;
|
|
- (void)computeDifferenceBetweenRect:(CGRect)oldRect andRect:(CGRect)newRect direction:(UICollectionViewScrollDirection)direction removedHandler:(void (^)(CGRect removedRect))removedHandler addedHandler:(void (^)(CGRect addedRect))addedHandler;
|
|
|
|
@end
|