Files
yinmeng-ios/xplan-ios/Main/Home/View/SubViews/XPHomePartyNavView.h
2023-08-25 14:48:58 +08:00

25 lines
438 B
Objective-C

//
// 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
@property(nonatomic,copy) NSString *title;
@property (nonatomic, weak) id<XPHomePartyNavViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END