blob: ec64d3a05d7490cf7b2e5a458516ddacc290f728 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | //
//  AssetsViewController.h
//  Video Tuneup
//
//  Created by tw on 4/24/12.
//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AssetsLibrary/AssetsLibrary.h>
@interface AssetsViewController : UITableViewController {
    NSMutableArray *assets;
}
@property (nonatomic, retain) UIActivityIndicatorView *activity;
@property (nonatomic, retain) ALAssetsLibrary *library;
@end
 |