LuxChat  2.0
Instant messenger for iOS
IDMPhotoBrowser.h
1 //
2 // IDMPhotoBrowser.h
3 // IDMPhotoBrowser
4 //
5 // Created by Michael Waterfall on 14/10/2010.
6 // Copyright 2010 d3i. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import <MessageUI/MessageUI.h>
11 
12 #import "IDMPhoto.h"
13 #import "IDMPhotoProtocol.h"
14 
15 @interface IDMPhotoBrowser : UIViewController <UIScrollViewDelegate>
16 
17 @property (nonatomic, weak) UIImage *scaleImage;
18 
19 @property (nonatomic) float animationDuration;
20 
21 - (id)initWithPhotos:(NSArray *)photosArray;
22 
23 - (void)reloadData;
24 
25 @end
Definition: IDMPhotoBrowser.h:15