photosViewController.h 560 B

12345678910111213141516171819202122232425
  1. //
  2. // photosViewController.h
  3. // sjvodios
  4. //
  5. // Created by on 12-6-2.
  6. // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class AppDelegate;
  10. @protocol JXServerResult;
  11. @class JXImageView;
  12. @interface photosViewController : UIViewController<UIScrollViewDelegate>{
  13. int _page;
  14. UIScrollView* sv;
  15. int _photoCount;
  16. JXImageView* _iv;
  17. NSMutableArray* _array;
  18. }
  19. @property(nonatomic,retain) NSMutableArray* photos;
  20. @property(nonatomic) int page;
  21. +(photosViewController*)showPhotos:(NSArray*)a;
  22. @end