12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // JXMenuView.h
- // shiku_im
- //
- // Created by 1 on 2018/9/6.
- // Copyright © 2018年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class JXMenuView;
- @protocol JXMenuViewDelegate <NSObject>
- - (void)didMenuView:(JXMenuView *)menuView WithButtonIndex:(NSInteger)index;
- @end
- @interface JXMenuView : UIView
- @property (nonatomic, weak) id<JXMenuViewDelegate>delegate;
- @property (nonatomic, strong) NSArray *titles;
- /**
-
- 暂为weiboVC 专用控件
- Point (.x 暂时无效)
- */
- // 创建
- - (instancetype)initWithPoint:(CGPoint)point Title:(NSArray *)titles Images:(NSArray *)images;
- // 隐藏
- - (void)dismissBaseView;
- @end
|