20 lines
458 B
Objective-C
20 lines
458 B
Objective-C
//
|
|
// QBAssetsViewController.h
|
|
// QBImagePicker
|
|
//
|
|
// Created by Katsuma Tanaka on 2015/04/03.
|
|
// Copyright (c) 2015 Katsuma Tanaka. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class QBImagePickerController;
|
|
@class PHAssetCollection;
|
|
|
|
@interface QBAssetsViewController : UICollectionViewController
|
|
|
|
@property (nonatomic, weak) QBImagePickerController *imagePickerController;
|
|
@property (nonatomic, strong) PHAssetCollection *assetCollection;
|
|
|
|
@end
|