MJPhotoToolbar.h 648 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // MJPhotoToolbar.h
  3. // FingerNews
  4. //
  5. // Created by mj on 13-9-24.
  6. // Copyright (c) 2013年 itcast. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol MJPhotoToolbarDelegate <NSObject>
  10. - (void)DeleteThisImage:(NSInteger)ThisImageIndex;
  11. - (void)downLoadThisImage:(NSInteger)ThisImageIndex;
  12. @end
  13. @interface MJPhotoToolbar : UIView
  14. {
  15. }
  16. // 所有的图片对象
  17. @property (nonatomic, strong) NSArray *photos;
  18. // 当前展示的图片索引
  19. @property (nonatomic, assign) NSUInteger currentPhotoIndex;
  20. @property (nonatomic, retain) NSString * DeleteImage;
  21. @property (nonatomic, assign) id<MJPhotoToolbarDelegate>Delegate;
  22. @end