2022-09-22 14:08:26 +08:00
|
|
|
//
|
|
|
|
// XPHomePartyNavView.h
|
|
|
|
// xplan-ios
|
|
|
|
//
|
|
|
|
// Created by GreenLand on 2022/9/21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@protocol XPHomePartyNavViewDelegate <NSObject>
|
|
|
|
///点击了搜索房间
|
|
|
|
- (void)xPHomePartyNavViewDidClickBack;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface XPHomePartyNavView : UIView
|
2023-08-25 14:48:58 +08:00
|
|
|
@property(nonatomic,copy) NSString *title;
|
2022-09-22 14:08:26 +08:00
|
|
|
@property (nonatomic, weak) id<XPHomePartyNavViewDelegate> delegate;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|