123456789101112131415161718192021222324252627282930313233343536 |
- //
- // KBShareGoodsTop.m
- // YouHuiProject
- //
- // Created by jcymac on 2018/5/18.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "KBShareGoodsTop.h"
- @interface KBShareGoodsTop()
- @property(nonatomic,strong)NSArray *textArray;
- @end
- @implementation KBShareGoodsTop
- -(instancetype)initWithFrame:(CGRect)frame{
- if (self=[super initWithFrame:frame]) {
-
- }
- return self;
- }
- -(NSArray *)textArray{
- if (!_textArray) {
- }
- return _textArray;
- }
- @end
|