123456789101112131415161718192021 |
- //
- // XMGXianShiMshaView.h
- // 振飞商城
- //
- // Created by 123 on 2020/5/16.
- // Copyright © 2020 Vibration Fly. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol XMGXianshiMSTCellDelegate <NSObject>
-
- -(void )selectItemAtIndexPathTitle:(NSIndexPath *)indexPath;
- @end
- @interface XMGXianShiMshaView : UIView
- @property (nonatomic,strong) NSMutableArray *dataArr;
- @property (nonatomic,weak) id<XMGXianshiMSTCellDelegate> delegate;
- @end
-
|