| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // RAPhotoModel.h
- // Apex And Drivers
- //
- // Created by Jack on 2018/10/30.
- // Copyright © 2018年 USAI. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "RAPhotoModelDelegate.h"
- #import "RAphotoLayoutDelegate.h"
- @class RAPhotoLayout,RAPhotoItemModel;
- @interface RAPhotoModel : NSObject <RAPhotoLayoutDelegate>
- @property (nonatomic,assign) NSInteger type;
- @property (nonatomic, copy) NSString *key;
- @property (nonatomic, copy) NSString *title;
- @property (nonatomic,assign) BOOL required;
- @property (nonatomic,assign) CGFloat width;
- @property (nonatomic,strong) NSArray<RAPhotoItemModel *> *photos;
- @property (nonatomic,assign,readonly) CGFloat height;
- @property (nonatomic,weak) id<RAPhotoModelDelegate> delegate;
- - (RAPhotoItemModel *)photoItemAtIndex:(NSUInteger)index;
- - (UIImage *)photoAtIndex:(NSUInteger)index;
- - (NSUInteger)photoCount;
- - (NSArray<UIImage *> *)photoArray;
- @end
|