| 12345678910111213141516171819202122232425262728293031 |
- //
- // MOScrollMenuView.h
- // powerone
- //
- // Created by SuperC on 2019/8/8.
- // Copyright © 2019 onecloud.ltd. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOCountryBtn : UIButton
- @end
- @interface MOScrollMenuView : UIScrollView
- /** 菜单标题数组 */
- @property (nonatomic, strong) NSArray *titleArray;
- /** 当前选择的按钮的index */
- @property (nonatomic, assign) NSInteger currentButtonIndex;
- /** 菜单按钮点击时回调block, 所点按钮的index */
- @property (nonatomic, copy) void(^clickBtnBlock)(NSInteger index);
- - (void)reloadData;
- @end
- NS_ASSUME_NONNULL_END
|