JCHATAlbumTableViewCell.h 521 B

12345678910111213141516171819
  1. //
  2. // AlbumTableViewCell.h
  3. // photosFramework
  4. //
  5. // Created by HuminiOS on 15/11/11.
  6. // Copyright © 2015年 HuminiOS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Photos/Photos.h>
  10. #import "JCHATAlbumModel.h"
  11. @interface JCHATAlbumTableViewCell : UITableViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *albumImage;
  13. @property (weak, nonatomic) IBOutlet UILabel *albumTittle;
  14. @property (weak, nonatomic) PHCollection *albumCollection;
  15. - (void)layoutWithAlbumModel:(JCHATAlbumModel *)model;
  16. @end