XWPhotoCell.h 469 B

12345678910111213141516171819202122
  1. //
  2. // XWPhotoCell.h
  3. // XWPublishDemo
  4. //
  5. // Created by 邱学伟 on 16/4/15.
  6. // Copyright © 2016年 邱学伟. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface XWPhotoCell : UICollectionViewCell
  10. @property (strong, nonatomic) IBOutlet UIImageView *profilePhoto;
  11. @property (strong, nonatomic) IBOutlet UIButton *closeButton;
  12. @property(nonatomic,strong) UIImageView *BigImgView;
  13. /** 查看大图 */
  14. - (void)setBigImgViewWithImage:(UIImage *)img;
  15. @end