// // XPHoneNavView.h // xplan-ios // // Created by 冯硕 on 2021/11/29. // #import #import NS_ASSUME_NONNULL_BEGIN @class XPHomeNavView; @protocol XPHomeNavViewDelegate ///点击了搜索房间 - (void)xPHomeNavView:(XPHomeNavView *)view didClickSearch:(UIButton *)sender; ///点击了榜单按钮 - (void)xPHomeNavView:(XPHomeNavView *)view didClickRank:(UIButton *)sender; ///点击了开房按钮 - (void)xPHomeNavView:(XPHomeNavView *)view didClickOpenRoom:(UIButton *)sender; @end @interface XPHomeNavView : UIView ///滑块 @property (nonatomic, strong, readonly) JXCategoryTitleView *titleView; ///代理 @property (nonatomic,weak) id delegate; @end NS_ASSUME_NONNULL_END