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