// // PhotoContainerView.h // hc // // Created by hc on 2018/5/16. // Copyright © 2018年 hc. All rights reserved. // #import #import "HCCommunityDetailModel.h" @protocol PhotoContainerViewDelegate @optional -(void)otherOPByModel:(HCCommunityDetailModel *)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