通過自定義相冊來介紹photo library的使用

来源:http://www.cnblogs.com/salam/archive/2016/09/28/5914984.html
-Advertisement-
Play Games

因為我在模仿美圖秀秀的功能,在使用相冊時候,UIImagePickerController本來就是一個UINavigationController的子類,所以沒有辦法使用push,所以做了一個自定義的非UINavigationController子類的相冊。使用的api是ios8以上提供的photo ...


  因為我在模仿美圖秀秀的功能,在使用相冊時候,UIImagePickerController本來就是一個UINavigationController的子類,所以沒有辦法使用push,所以做了一個自定義的非UINavigationController子類的相冊。使用的api是ios8以上提供的photokit。

  一、獲取相冊的所有相冊集

  例如:個人收藏,最近添加,相機膠卷等。

  1.使用+ (PHFetchResult<PHAssetCollection *> *)fetchAssetCollectionsWithType:(PHAssetCollectionType)type subtype:(PHAssetCollectionSubtype)subtype options:(nullable PHFetchOptions *)options方法來獲取相冊集集合

PHFetchResult返回了結果

  2.使用+ (PHFetchResult<PHAsset *> *)fetchAssetsInAssetCollection:(PHAssetCollection *)assetCollection options:(nullable PHFetchOptions *)options方法來獲取相冊集內的所有照片資源

  

- (PHFetchResult *)fetchAssetsInAssetCollection:(PHAssetCollection *)assetCollection ascending:(BOOL)ascending
{
    PHFetchOptions *options = [[PHFetchOptions alloc] init];
    options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:ascending]];
    PHFetchResult *result = [PHAsset fetchAssetsInAssetCollection:assetCollection options:options];
    
    return result;
}

- (NSArray <PHAsset *> *)getAssetsInAssetCollection:(PHAssetCollection *)assetCollection ascending:(BOOL)ascending
{
    NSMutableArray <PHAsset *> *mArr = [NSMutableArray array];
    PHFetchResult *result = [self fetchAssetsInAssetCollection:assetCollection ascending:ascending];
    [result enumerateObjectsUsingBlock:^(PHAsset *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        if (obj.mediaType == PHAssetMediaTypeImage) {
            [mArr addObject:obj];
        }
    }];
    
    return mArr;
}

- (NSArray<PHAsset *> *)getAllAssetInPhotoAblumWithAscending:(BOOL)ascending
{
    NSMutableArray<PHAsset *> *assets = [NSMutableArray array];
    
    PHFetchOptions *option = [[PHFetchOptions alloc] init];
    
    option.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:ascending]];
    
    PHFetchResult *result = [PHAsset fetchAssetsWithMediaType:PHAssetMediaTypeImage options:option];
    
    [result enumerateObjectsUsingBlock:^(PHAsset *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        [assets addObject:obj];
    }];
    
    return assets;
}

- (NSArray <FWPhotoAlbums *> *)getPhotoAlbums
{
    NSMutableArray<FWPhotoAlbums *> *mArr = [NSMutableArray array];
    PHFetchResult *smartAlbum = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeAlbumRegular options:nil];
    [smartAlbum enumerateObjectsUsingBlock:^(PHAssetCollection *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        if (obj.assetCollectionSubtype != 202 && obj.assetCollectionSubtype < 212) {
            NSArray <PHAsset *> *assets = [self getAssetsInAssetCollection:obj ascending:NO];
            if ([assets count]) {
                FWPhotoAlbums *pa = [[FWPhotoAlbums alloc] init];
                pa.albumName = [self TitleOfAlbumForChinse:obj.localizedTitle];
                pa.albumImageCount = [assets count];
                pa.firstImageAsset = assets.firstObject;
                pa.assetCollection = obj;
                [mArr addObject:pa];
            }
        }
    }];
    
    PHFetchResult *userAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary options:nil];
    [userAlbums enumerateObjectsUsingBlock:^(PHAssetCollection * _Nonnull collection, NSUInteger idx, BOOL * _Nonnull stop) {
        NSArray<PHAsset *> *assets = [self getAssetsInAssetCollection:collection ascending:YES];
        if (assets.count > 0) {
            FWPhotoAlbums *pa = [[FWPhotoAlbums alloc] init];
            pa.albumName = collection.localizedTitle;
            pa.albumImageCount = [assets count];
            pa.firstImageAsset = assets.firstObject;
            pa.assetCollection = collection;
            [mArr addObject:pa];
        }
    }];
    
    return mArr;
}

由於系統返回的相冊集名稱為英文,我們需要轉換為中文

- (NSString *)TitleOfAlbumForChinse:(NSString *)title
{
    if ([title isEqualToString:@"Slo-mo"]) {
        return @"慢動作";
    } else if ([title isEqualToString:@"Recently Added"]) {
        return @"最近添加";
    } else if ([title isEqualToString:@"Favorites"]) {
        return @"個人收藏";
    } else if ([title isEqualToString:@"Recently Deleted"]) {
        return @"最近刪除";
    } else if ([title isEqualToString:@"Videos"]) {
        return @"視頻";
    } else if ([title isEqualToString:@"All Photos"]) {
        return @"所有照片";
    } else if ([title isEqualToString:@"Selfies"]) {
        return @"自拍";
    } else if ([title isEqualToString:@"Screenshots"]) {
        return @"屏幕快照";
    } else if ([title isEqualToString:@"Camera Roll"]) {
        return @"相機膠卷";
    }
    return nil;
}

 

二、獲取照片

- (void)requestImageForAsset:(PHAsset *)asset size:(CGSize)size resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void (^)(UIImage *, NSDictionary *))completion
{
    static PHImageRequestID requestID = -1;
    CGFloat scale = [UIScreen mainScreen].scale;
    CGFloat width = MIN(WIDTH, 800);
    if (requestID >= 1 && size.width/width==scale) {
        [[PHCachingImageManager defaultManager] cancelImageRequest:requestID];
    }
    
    PHImageRequestOptions *option = [[PHImageRequestOptions alloc] init];
    option.resizeMode = resizeMode;
    option.networkAccessAllowed = YES;
    
    requestID = [[PHCachingImageManager defaultManager] requestImageForAsset:asset targetSize:size contentMode:PHImageContentModeAspectFill options:option resultHandler:^(UIImage * _Nullable image, NSDictionary * _Nullable info) {
        BOOL downloadFinined = ![[info objectForKey:PHImageCancelledKey] boolValue] && ![info objectForKey:PHImageErrorKey];
        if (downloadFinined && completion) {
            completion(image, info);
        }
    }];
}

 

 

 三、拍照

  [_mCamera capturePhotoAsJPEGProcessedUpToFilter:_mFilter withCompletionHandler:^(NSData *processedJPEG, NSError *error){
        [[PHPhotoLibrary sharedPhotoLibrary] performChanges:^{
        [[PHAssetCreationRequest creationRequestForAsset] addResourceWithType:PHAssetResourceTypePhoto data:processedJPEG options:nil];
        } completionHandler:^(BOOL success, NSError * _Nullable error) {
            
        }];
    }];

 

 

效果

       

 

代碼

1.模型類,存儲相冊集名稱,相片數,第一張照片以及該相冊集包含的所有照片集合

#import <Foundation/Foundation.h>
#import <photos/photos.h>

@interface FWPhotoAlbums : NSObject

@property (nonatomic, copy) NSString *albumName; //相冊名字
@property (nonatomic, assign) NSUInteger albumImageCount; //該相冊內相片數量
@property (nonatomic, strong) PHAsset *firstImageAsset; //相冊第一張圖片縮略圖
@property (nonatomic, strong) PHAssetCollection *assetCollection; //相冊集,通過該屬性獲取該相冊集下所有照片

@end
FWPhotoAlbums.h
#import "FWPhotoAlbums.h"

@implementation FWPhotoAlbums

@end
FWPhotoAlbums.m

 

2.照片管理類,負責獲取資源集合,請求照片

#import <Foundation/Foundation.h>
#import "FWPhotoAlbums.h"

@interface FWPhotoManager : NSObject

+ (instancetype)sharedManager;

- (NSArray <FWPhotoAlbums *> *)getPhotoAlbums;

- (NSArray<PHAsset *> *)getAllAssetInPhotoAblumWithAscending:(BOOL)ascending;

- (NSArray<PHAsset *> *)getAssetsInAssetCollection:(PHAssetCollection *)assetCollection ascending:(BOOL)ascending;

- (void)requestImageForAsset:(PHAsset *)asset size:(CGSize)size resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void (^)(UIImage *image, NSDictionary *info))completion;

- (void)requestImageForAsset:(PHAsset *)asset scale:(CGFloat)scale resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void (^)(UIImage *image))completion;

- (void)getPhotosBytesWithArray:(NSArray *)photos completion:(void (^)(NSString *photosBytes))completion;

- (BOOL)judgeAssetisInLocalAblum:(PHAsset *)asset ;
@end
FWPhotoManager.h
#import "FWPhotoManager.h"

@implementation FWPhotoManager

+ (instancetype)sharedManager
{
    static FWPhotoManager *manager = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
        manager = [[super allocWithZone:NULL] init];
    });
    
    return manager;
}

+ (instancetype)allocWithZone:(struct _NSZone *)zone
{
    return [self sharedManager];
}

- (PHFetchResult *)fetchAssetsInAssetCollection:(PHAssetCollection *)assetCollection ascending:(BOOL)ascending
{
    PHFetchOptions *options = [[PHFetchOptions alloc] init];
    options.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:ascending]];
    PHFetchResult *result = [PHAsset fetchAssetsInAssetCollection:assetCollection options:options];
    
    return result;
}

- (NSArray <PHAsset *> *)getAssetsInAssetCollection:(PHAssetCollection *)assetCollection ascending:(BOOL)ascending
{
    NSMutableArray <PHAsset *> *mArr = [NSMutableArray array];
    PHFetchResult *result = [self fetchAssetsInAssetCollection:assetCollection ascending:ascending];
    [result enumerateObjectsUsingBlock:^(PHAsset *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        if (obj.mediaType == PHAssetMediaTypeImage) {
            [mArr addObject:obj];
        }
    }];
    
    return mArr;
}

- (NSArray<PHAsset *> *)getAllAssetInPhotoAblumWithAscending:(BOOL)ascending
{
    NSMutableArray<PHAsset *> *assets = [NSMutableArray array];
    
    PHFetchOptions *option = [[PHFetchOptions alloc] init];
    
    option.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"creationDate" ascending:ascending]];
    
    PHFetchResult *result = [PHAsset fetchAssetsWithMediaType:PHAssetMediaTypeImage options:option];
    
    [result enumerateObjectsUsingBlock:^(PHAsset *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        [assets addObject:obj];
    }];
    
    return assets;
}

- (NSArray <FWPhotoAlbums *> *)getPhotoAlbums
{
    NSMutableArray<FWPhotoAlbums *> *mArr = [NSMutableArray array];
    PHFetchResult *smartAlbum = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeSmartAlbum subtype:PHAssetCollectionSubtypeAlbumRegular options:nil];
    [smartAlbum enumerateObjectsUsingBlock:^(PHAssetCollection *  _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
        if (obj.assetCollectionSubtype != 202 && obj.assetCollectionSubtype < 212) {
            NSArray <PHAsset *> *assets = [self getAssetsInAssetCollection:obj ascending:NO];
            if ([assets count]) {
                FWPhotoAlbums *pa = [[FWPhotoAlbums alloc] init];
                pa.albumName = [self TitleOfAlbumForChinse:obj.localizedTitle];
                pa.albumImageCount = [assets count];
                pa.firstImageAsset = assets.firstObject;
                pa.assetCollection = obj;
                [mArr addObject:pa];
            }
        }
    }];
    
    PHFetchResult *userAlbums = [PHAssetCollection fetchAssetCollectionsWithType:PHAssetCollectionTypeAlbum subtype:PHAssetCollectionSubtypeSmartAlbumUserLibrary options:nil];
    [userAlbums enumerateObjectsUsingBlock:^(PHAssetCollection * _Nonnull collection, NSUInteger idx, BOOL * _Nonnull stop) {
        NSArray<PHAsset *> *assets = [self getAssetsInAssetCollection:collection ascending:YES];
        if (assets.count > 0) {
            FWPhotoAlbums *pa = [[FWPhotoAlbums alloc] init];
            pa.albumName = collection.localizedTitle;
            pa.albumImageCount = [assets count];
            pa.firstImageAsset = assets.firstObject;
            pa.assetCollection = collection;
            [mArr addObject:pa];
        }
    }];
    
    return mArr;
}

- (NSString *)TitleOfAlbumForChinse:(NSString *)title
{
    if ([title isEqualToString:@"Slo-mo"]) {
        return @"慢動作";
    } else if ([title isEqualToString:@"Recently Added"]) {
        return @"最近添加";
    } else if ([title isEqualToString:@"Favorites"]) {
        return @"個人收藏";
    } else if ([title isEqualToString:@"Recently Deleted"]) {
        return @"最近刪除";
    } else if ([title isEqualToString:@"Videos"]) {
        return @"視頻";
    } else if ([title isEqualToString:@"All Photos"]) {
        return @"所有照片";
    } else if ([title isEqualToString:@"Selfies"]) {
        return @"自拍";
    } else if ([title isEqualToString:@"Screenshots"]) {
        return @"屏幕快照";
    } else if ([title isEqualToString:@"Camera Roll"]) {
        return @"相機膠卷";
    }
    return nil;
}

- (void)requestImageForAsset:(PHAsset *)asset size:(CGSize)size resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void (^)(UIImage *, NSDictionary *))completion
{
    static PHImageRequestID requestID = -1;
    CGFloat scale = [UIScreen mainScreen].scale;
    CGFloat width = MIN(WIDTH, 800);
    if (requestID >= 1 && size.width/width==scale) {
        [[PHCachingImageManager defaultManager] cancelImageRequest:requestID];
    }
    
    PHImageRequestOptions *option = [[PHImageRequestOptions alloc] init];
    option.resizeMode = resizeMode;
    option.networkAccessAllowed = YES;
    
    requestID = [[PHCachingImageManager defaultManager] requestImageForAsset:asset targetSize:size contentMode:PHImageContentModeAspectFill options:option resultHandler:^(UIImage * _Nullable image, NSDictionary * _Nullable info) {
        BOOL downloadFinined = ![[info objectForKey:PHImageCancelledKey] boolValue] && ![info objectForKey:PHImageErrorKey];
        if (downloadFinined && completion) {
            completion(image, info);
        }
    }];
}

- (void)requestImageForAsset:(PHAsset *)asset scale:(CGFloat)scale resizeMode:(PHImageRequestOptionsResizeMode)resizeMode completion:(void (^)(UIImage *image))completion
{
    PHImageRequestOptions *option = [[PHImageRequestOptions alloc] init];
    option.resizeMode = resizeMode;//控制照片尺寸
    option.networkAccessAllowed = YES;
    
    [[PHCachingImageManager defaultManager] requestImageDataForAsset:asset options:option resultHandler:^(NSData * _Nullable imageData, NSString * _Nullable dataUTI, UIImageOrientation orientation, NSDictionary * _Nullable info) {
        BOOL downloadFinined = ![[info objectForKey:PHImageCancelledKey] boolValue] && ![info objectForKey:PHImageErrorKey] && ![[info objectForKey:PHImageResultIsDegradedKey] boolValue];
        if (downloadFinined && completion) {
            CGFloat sca = imageData.length/(CGFloat)UIImageJPEGRepresentation([UIImage imageWithData:imageData], 1).length;
            NSData *data = UIImageJPEGRepresentation([UIImage imageWithData:imageData], scale==1?sca:sca/2);
            completion([UIImage imageWithData:data]);
        }
    }];
}

- (BOOL)judgeAssetisInLocalAblum:(PHAsset *)asset
{
    PHImageRequestOptions *option = [[PHImageRequestOptions alloc] init];
    option.networkAccessAllowed = NO;
    option.synchronous = YES;
    
    __block BOOL isInLocalAblum = YES;
    
    [[PHCachingImageManager defaultManager] requestImageDataForAsset:asset options:option resultHandler:^(NSData * _Nullable imageData, NSString * _Nullable dataUTI, UIImageOrientation orientation, NSDictionary * _Nullable info) {
        isInLocalAblum = imageData ? YES : NO;
    }];
    return isInLocalAblum;
}



@end
FWPhotoManager.m

 

3.顯示相冊FWPhotoAlbumTableViewController

#import <UIKit/UIKit.h>
#import <Photos/Photos.h>

@interface FWPhotoAlbumTableViewController : UITableViewController
//最大選擇數
@property (nonatomic, assign) NSInteger maxSelectCount;
//是否選擇了原圖
@property (nonatomic, assign) BOOL isCanSelectMorePhotos;
//當前已經選擇的圖片
//@property (nonatomic, strong) NSMutableArray<ZLSelectPhotoModel *> *arraySelectPhotos;

//選則完成後回調
//@property (nonatomic, copy) void (^DoneBlock)(NSArray<ZLSelectPhotoModel *> *selPhotoModels, BOOL isSelectOriginalPhoto);
//取消選擇後回調
@property (nonatomic, copy) void (^CancelBlock)();


@end
FWPhotoAlbumTableViewController.h
#import "FWPhotoAlbumTableViewController.h"
#import "FWPhotoManager.h"
#import "UIButton+TextAndImageHorizontalDisplay.h"
#import "FWPhotoCollectionViewController.h"
#import "FWPhotosLayout.h"

@interface FWPhotoAlbumTableViewController ()
{
    NSMutableArray<FWPhotoAlbums *> *mArr;
}

@end

@implementation FWPhotoAlbumTableViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    self.view.backgroundColor = [UIColor whiteColor];
    self.title = @"相冊";
    
    mArr= [[[FWPhotoManager sharedManager] getPhotoAlbums] mutableCopy];
    
    [self initNavgationBar];
    
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
}

- (void)initNavgationBar
{
    UIButton *rightBar = [UIButton buttonWithType:UIButtonTypeSystem];
    rightBar.frame = CGRectMake(0, 0, 68, 32);
    [rightBar setImage:[UIImage imageNamed:@"Camera"] withTitle:@"相機" forState:UIControlStateNormal];
    [rightBar addTarget:self action:@selector(cameraClicked) forControlEvents:UIControlEventTouchUpInside];
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:rightBar];
}

- (void)cameraClicked
{
    
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return [mArr count];
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    return 100;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (!cell)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellID];
    }
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    FWPhotoAlbums *album = mArr[indexPath.row];
    cell.textLabel.text =album.albumName;
    cell.detailTextLabel.text = [NSString stringWithFormat:@"%d張",album.albumImageCount];
    cell.detailTextLabel.textColor = [UIColor grayColor];
    __block UIImage *img = nil;
    [[FWPhotoManager sharedManager] requestImageForAsset:album.firstImageAsset size:CGSizeMake(60 * 3, 60 * 3) resizeMode:PHImageRequestOptionsResizeModeExact completion:^(UIImage *image, NSDictionary *info) {
        img = image;
    }];
    cell.imageView.image = img;
    cell.imageView.contentMode = UIViewContentModeScaleAspectFill;
    cell.imageView.clipsToBounds = YES;
    return cell;
}

- (BOOL)prefersStatusBarHidden
{
    return YES;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    FWPhotoAlbums *model = [mArr objectAtIndex:indexPath.row];
    FWPhotosLayout *layout = [[FWPhotosLayout alloc] init];
    layout.minimumInteritemSpacing = 1.5;
    layout.minimumLineSpacing = 5.0;
    FWPhotoCollectionViewController *vc = [[FWPhotoCollectionViewController alloc] initWithCollectionViewLayout:layout model:model];
    [self.navigationController pushViewController:vc animated:YES];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
FWPhotoAlbumTableViewController.m

 

4.顯示相冊集內所有照片FWPhotoCollectionViewController

#import <UIKit/UIKit.h>
#import <Photos/Photos.h>
#import "FWPhotoAlbums.h"

@interface FWPhotoCollectionViewController : UICollectionViewController

@property (nonatomic, strong) FWPhotoAlbums *model;

- (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout model:(FWPhotoAlbums *)model;

@end
FWPhotoCollectionViewController.h

 

//
//  FWPhotoCollectionViewController.m
//  FWLifeApp
//
//  Created by Forrest Woo on 16/9/23.
//  Copyright © 2016年 ForrstWoo. All rights reserved.
//

#import "FWPhotoCollectionViewController.h"
#import "FWPhotoCell.h"
#import "FWPhotoManager.h"
#import "FWPhotosLayout.h"
#import "FWDisplayBigImageViewController.h"

@interface FWPhotoCollectionViewController () <UICollectionViewDelegateFlowLayout, UICollectionViewDataSource>
{
    NSArray<PHAsset *> *_dataSouce;
}
@property (nonatomic, strong) PHAssetCollection *assetCollection;
@end

@implementation FWPhotoCollectionViewController

static NSString * const reuseIdentifier = @"Cell";

- (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout model:(FWPhotoAlbums *)model
{
    if (self = [super initWithCollectionViewLayout:layout]) {
        self.model = model;
    }
    
    return self;
}

- (void)viewDidLoad {
    [super viewDidLoad];
    
    // Uncomment the following line to preserve selection between presentations
    // self.clearsSelectionOnViewWillAppear = NO;
//    self.navigationController.navigationBarHidden = YES;
    // Register cell classes
    CGRect frame = self.collectionView.frame;
    frame.origin.y+=44;
    self.collectionView.frame = frame;
    self.view.backgroundColor = [UIColor whiteColor];

    [self initSource];
}

//- (void)setModel:(FWPhotoAlbums *)model
//{
//    self.model = model;
//    
//    [self initSource];
//}

- (BOOL)prefersStatusBarHidden
{
    return YES;
}
- (void)initSource
{
    [self.collectionView registerClass:[FWPhotoCell class] forCellWithReuseIdentifier:reuseIdentifier];
    self.title = self.model.albumName;
    self.automaticallyAdjustsScrollViewInsets = NO;
    // Do any additional setup after loading the view.
    self.assetCollection = self.model.assetCollection;
    _dataSouce = [[FWPhotoManager sharedManager] getAssetsInAssetCollection:self.assetCollection ascending:YES];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark <UICollectionViewDataSource>

- (NSInteger)numberOfSectionsInCollectionView:(UICollectionView *)collectionView {
    return 1;
}


- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section {
    return [_dataSouce count];
}

- (CGSize)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath
{
    FWPhotosLayout *lay = (FWPhotosLayout *)collectionViewLayout;
    return CGSizeMake([lay cellWidth],[lay cellWidth]);
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
    FWPhotoCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:reuseIdentifier forIndexPath:indexPath];
    PHAsset *asset = _dataSouce[indexPath.row];
    __block UIImage *bImage = nil;
    CGSize size = cell.frame.size;
    size.width *= 3;
    size.height *= 3;
    [[FWPhotoManager sharedManager] requestImageForAsset:asset size:size resizeMode:PHImageRequestOptionsResizeModeFast completion:^(UIImage *image, NSDictionary *info) {
        bImage = image;
    }];
    
    [cell setImage:bImage];
    
    return cell;
}

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    PHAsset *asset = _dataSouce[indexPath.row];

    [[FWPhotoManager sharedManager] requestImageForAsset:asset size:PHImageManagerMaximumSize resizeMode:PHImageRequestOptionsResizeModeFast completion:^(UIImage *image, NSDictionary *info) {
        FWDisplayBigImageViewController *vc = [[FWDisplayBigImageViewController alloc] initWithImage:image];
        [self.navigationController pushViewController:vc animated:YES];
    }];
   
}
#pragma mark <UICollectionViewDelegate>

@end
FWPhotoCollectionViewController.m

 

5.佈局類

#import <UIKit/UIKit.h>

@interface FWPhotosLayout : UICollectionViewFlowLayout

@property (nonatomic, assign,readonly)CGFloat cellWidth;

@end
FWPhotosLayout.h
#import "FWPhotosLayout.h"

@interface FWPhotosLayout ()
@property NSInteger countOfRow;
@end

@implementation FWPhotosLayout

- (void)prepareLayout
{
    [super prepareLayout];
    
    self.countOfRow = ceilf([self.collectionView numberOfItemsInSection:0] / 4.0);
}

- (UICollectionViewLayoutAttributes*)layoutAttributesForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewLayoutAttributes *attris = [UICollectionViewLayoutAttributes layoutAttributesForCellWithIndexPath:indexPath];
    NSInteger currentRow = indexPath.item / 4;
    
    CGRect frame = CGRectMake( (indexPath.item % 4) * ([self cellWidth] + 5),currentRow * ([self cellWidth] + 65), [self cellWidth], [self cellWidth]);
    attris.frame = frame;
    attris.zIndex = 1;
    
    return attris;
}

- (CGFloat)cellWidth
{
    return (WIDTH - 3 * 5) / 4;
}

- (CGSize)collectionViewContentSize
{
    return CGSizeMake(WIDTH, self.countOfRow * ([self cellWidth] + 5) + 44);
}
@end
FWPhotosLayout.m

 

 

代碼下載 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 當我們在寫應用時要複製粘貼文本框內容時,預設顯示的文字為英文字體,可按如下步驟設置,顯示中文: ...
  • 1.首先要先註冊自己的appkey在shareSDK官網裡面 2.下載shareSDK 文檔,可以根據需要下載自己需要的 如圖 3.將下載好的shareSDK 解壓後加入工程裡面 4.添加依賴庫 //必須添加的庫 必須添加的依賴庫如下(Xcode 7 下 .dylib庫尾碼名更改為 .tbd): l ...
  • 在上篇文章中實現了優酷菜單執行動畫,本文接著完善已經實現的動畫功能 本文地址:http://www.cnblogs.com/wuyudong/p/5915958.html ,轉載請註明源地址。 已經實現的菜單動畫功能存在一點BUG,那就是當快速連續點擊menu或home按鈕的時候,動畫出現進入和退出 ...
  • 前兩天上架App遇到一個比較神奇的問題,打包好的項目使用Application Loader上傳成功,但是在iTunes裡面卻找不到構建版本,App的活動頁面也沒有相應的版本。 之前瞭解IOS10對用戶的安全和隱私的增強,在申請很多私有許可權的時候都需要添加描述,但是,在使用Xcode 8對原有項目編 ...
  • 實際上都是互補的,也就是說一些原則需要利用另一些原則來實現自己。 6大原則如下: 1)單一職責原則,一個合理的類,應該僅有一個引起它變化的原因,即單一職責,就是設計的這個類功能應該只有一個; 優點:消除耦合,減小因需求變化引起代碼僵化。 2) 開-閉原則,講的是設計要對擴展有好的支持,而對修改要嚴格 ...
  • 此外不在更新 地址: ...
  • 實現類似下麵的這種佈局的方法 ...
  • 在上篇文章中實現了優酷菜單的佈局,本文接著實現動畫功能 本文地址:http://www.cnblogs.com/wuyudong/p/5914901.html,轉載請註明源地址。 新建動畫工具類AnimationUtils.java,代碼如下: 接著編寫邏輯部分代碼: 基本實現菜單的旋轉功能 ...
一周排行
    -Advertisement-
    Play Games
  • 前言 本文介紹一款使用 C# 與 WPF 開發的音頻播放器,其界面簡潔大方,操作體驗流暢。該播放器支持多種音頻格式(如 MP4、WMA、OGG、FLAC 等),並具備標記、實時歌詞顯示等功能。 另外,還支持換膚及多語言(中英文)切換。核心音頻處理採用 FFmpeg 組件,獲得了廣泛認可,目前 Git ...
  • OAuth2.0授權驗證-gitee授權碼模式 本文主要介紹如何筆者自己是如何使用gitee提供的OAuth2.0協議完成授權驗證並登錄到自己的系統,完整模式如圖 1、創建應用 打開gitee個人中心->第三方應用->創建應用 創建應用後在我的應用界面,查看已創建應用的Client ID和Clien ...
  • 解決了這個問題:《winForm下,fastReport.net 從.net framework 升級到.net5遇到的錯誤“Operation is not supported on this platform.”》 本文內容轉載自:https://www.fcnsoft.com/Home/Sho ...
  • 國內文章 WPF 從裸 Win 32 的 WM_Pointer 消息獲取觸摸點繪製筆跡 https://www.cnblogs.com/lindexi/p/18390983 本文將告訴大家如何在 WPF 裡面,接收裸 Win 32 的 WM_Pointer 消息,從消息裡面獲取觸摸點信息,使用觸摸點 ...
  • 前言 給大家推薦一個專為新零售快消行業打造了一套高效的進銷存管理系統。 系統不僅具備強大的庫存管理功能,還集成了高性能的輕量級 POS 解決方案,確保頁面載入速度極快,提供良好的用戶體驗。 項目介紹 Dorisoy.POS 是一款基於 .NET 7 和 Angular 4 開發的新零售快消進銷存管理 ...
  • ABP CLI常用的代碼分享 一、確保環境配置正確 安裝.NET CLI: ABP CLI是基於.NET Core或.NET 5/6/7等更高版本構建的,因此首先需要在你的開發環境中安裝.NET CLI。這可以通過訪問Microsoft官網下載並安裝相應版本的.NET SDK來實現。 安裝ABP ...
  • 問題 問題是這樣的:第三方的webapi,需要先調用登陸介面獲取Cookie,訪問其它介面時攜帶Cookie信息。 但使用HttpClient類調用登陸介面,返回的Headers中沒有找到Cookie信息。 分析 首先,使用Postman測試該登陸介面,正常返回Cookie信息,說明是HttpCli ...
  • 國內文章 關於.NET在中國為什麼工資低的分析 https://www.cnblogs.com/thinkingmore/p/18406244 .NET在中國開發者的薪資偏低,主要因市場需求、技術棧選擇和企業文化等因素所致。歷史上,.NET曾因微軟的閉源策略發展受限,儘管後來推出了跨平臺的.NET ...
  • 在WPF開發應用中,動畫不僅可以引起用戶的註意與興趣,而且還使軟體更加便於使用。前面幾篇文章講解了畫筆(Brush),形狀(Shape),幾何圖形(Geometry),變換(Transform)等相關內容,今天繼續講解動畫相關內容和知識點,僅供學習分享使用,如有不足之處,還請指正。 ...
  • 什麼是委托? 委托可以說是把一個方法代入另一個方法執行,相當於指向函數的指針;事件就相當於保存委托的數組; 1.實例化委托的方式: 方式1:通過new創建實例: public delegate void ShowDelegate(); 或者 public delegate string ShowDe ...