12345678910111213141516 |
- //
- // MJPhotoToolbar.h
- // FingerNews
- //
- // Created by mj on 13-9-24.
- // Copyright (c) 2013年 itcast. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface MJPhotoToolbar : UIView
- // 所有的图片对象
- @property (nonatomic, strong) NSArray *photos;
- // 当前展示的图片索引
- @property (nonatomic, assign) NSUInteger currentPhotoIndex;
- @end
|