口袋优选

KBShareGoodsTop.m 496B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // KBShareGoodsTop.m
  3. // YouHuiProject
  4. //
  5. // Created by jcymac on 2018/5/18.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import "KBShareGoodsTop.h"
  9. @interface KBShareGoodsTop()
  10. @property(nonatomic,strong)NSArray *textArray;
  11. @end
  12. @implementation KBShareGoodsTop
  13. -(instancetype)initWithFrame:(CGRect)frame{
  14. if (self=[super initWithFrame:frame]) {
  15. }
  16. return self;
  17. }
  18. -(NSArray *)textArray{
  19. if (!_textArray) {
  20. }
  21. return _textArray;
  22. }
  23. @end