12345678910111213141516171819202122 |
- //
- // PhotoContainerView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/16.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBCommunityDetailModel.h"
- @protocol PhotoContainerViewDelegate<NSObject>
- @optional
- -(void)otherOPByModel:(KBCommunityDetailModel *)model;
- @end
- @interface PhotoContainerView : UIView
- @property (nonatomic, strong) NSArray *picPathStringsArray;
- @property (nonatomic, strong) NSArray<KBCommunityDetailModel *> *modelArray;
- @property (nonatomic, weak ) id<PhotoContainerViewDelegate> delegate;
- @property (nonatomic ) NSInteger contentWidth;
- @end
|