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