mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
70 lines
1.2 KiB
Objective-C
70 lines
1.2 KiB
Objective-C
#import "TGMediaAssetMoment.h"
|
|
#import "TGMediaAssetFetchResult.h"
|
|
|
|
@interface TGMediaAssetMoment ()
|
|
{
|
|
NSUInteger _count;
|
|
PHAssetCollection *_collection;
|
|
TGMediaAssetFetchResult *_fetchResult;
|
|
}
|
|
@end
|
|
|
|
@implementation TGMediaAssetMoment
|
|
|
|
- (instancetype)initWithPHAssetCollection:(PHAssetCollection *)collection
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_collection = collection;
|
|
_count = collection.estimatedAssetCount;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
- (NSString *)title
|
|
{
|
|
return _collection.localizedTitle;
|
|
}
|
|
|
|
- (NSDate *)startDate
|
|
{
|
|
return _collection.startDate;
|
|
}
|
|
|
|
- (NSDate *)endDate
|
|
{
|
|
return _collection.endDate;
|
|
}
|
|
|
|
- (CLLocation *)location
|
|
{
|
|
return _collection.approximateLocation;
|
|
}
|
|
|
|
- (NSArray *)locationNames
|
|
{
|
|
return _collection.localizedLocationNames;
|
|
}
|
|
|
|
- (NSUInteger)assetCount
|
|
{
|
|
if (_fetchResult != nil)
|
|
return _fetchResult.count;
|
|
|
|
return _count;
|
|
}
|
|
|
|
- (TGMediaAssetFetchResult *)fetchResult
|
|
{
|
|
if (_fetchResult == nil)
|
|
{
|
|
PHFetchResult *fetchResult = [PHAsset fetchAssetsInAssetCollection:_collection options:nil];
|
|
_fetchResult = [[TGMediaAssetFetchResult alloc] initWithPHFetchResult:fetchResult reversed:false];
|
|
}
|
|
|
|
return _fetchResult;
|
|
}
|
|
|
|
@end
|