STTableShowPhotosCell.h 991 B

1234567891011121314151617181920212223242526
  1. //
  2. // STTableShowPhotosCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/20.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @class STTableShowPhotosCell;
  11. @protocol STTableShowPhotosCellDelegate <NSObject>
  12. @optional
  13. -(void)showSTTableShowPhotosCell:(STTableShowPhotosCell *)stTableShowPhotosCell;
  14. @end
  15. @interface STTableShowPhotosCell : STTableBaseCell
  16. @property (weak, nonatomic) IBOutlet UIView *photoBgView;
  17. @property (weak, nonatomic) IBOutlet UIButton *leftBtn;
  18. @property (weak, nonatomic) IBOutlet UIButton *rightBtn;
  19. @property (weak, nonatomic) IBOutlet UIImageView *photosImgView;
  20. @property (weak, nonatomic) IBOutlet UILabel *promptLab;
  21. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  22. @property(strong,nonatomic) NSMutableArray *dataSoureArray;
  23. @property(assign,nonatomic) int selectIndexNum;
  24. @property(weak,nonatomic)id<STTableShowPhotosCellDelegate>delegate;
  25. @end