MJPhotoToolbar.h 359 B

12345678910111213141516
  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. @interface MJPhotoToolbar : UIView
  10. // 所有的图片对象
  11. @property (nonatomic, strong) NSArray *photos;
  12. // 当前展示的图片索引
  13. @property (nonatomic, assign) NSUInteger currentPhotoIndex;
  14. @end