mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-07 12:00:48 +00:00
18 lines
393 B
Objective-C
18 lines
393 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
@class PHFetchResult;
|
|
@class ALAsset;
|
|
|
|
@class TGMediaAsset;
|
|
|
|
@interface TGMediaAssetFetchResult : NSObject
|
|
|
|
@property (nonatomic, readonly) NSUInteger count;
|
|
|
|
- (instancetype)initWithPHFetchResult:(PHFetchResult *)fetchResult reversed:(bool)reversed;
|
|
|
|
- (TGMediaAsset *)assetAtIndex:(NSUInteger)index;
|
|
- (NSUInteger)indexOfAsset:(TGMediaAsset *)asset;
|
|
|
|
@end
|