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