mirror of
https://gitee.com/shuto/cordova-imagePicker.git
synced 2026-05-23 00:05:03 +08:00
25 lines
741 B
Objective-C
25 lines
741 B
Objective-C
//
|
|
// AlbumPickerController.h
|
|
//
|
|
// Created by ELC on 2/15/11.
|
|
// Copyright 2011 ELC Technologies. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <AssetsLibrary/AssetsLibrary.h>
|
|
#import "ELCAssetSelectionDelegate.h"
|
|
#import "ELCAssetPickerFilterDelegate.h"
|
|
|
|
@interface ELCAlbumPickerController : UITableViewController <ELCAssetSelectionDelegate>
|
|
|
|
@property (nonatomic, weak) id<ELCAssetSelectionDelegate> parent;
|
|
@property (nonatomic, strong) NSMutableArray *assetGroups;
|
|
@property (nonatomic, assign) BOOL singleSelection;
|
|
@property (nonatomic, assign) BOOL immediateReturn;
|
|
|
|
// optional, can be used to filter the assets displayed
|
|
@property (nonatomic, weak) id<ELCAssetPickerFilterDelegate> assetPickerFilterDelegate;
|
|
|
|
@end
|
|
|