29 lines
722 B
Objective-C
29 lines
722 B
Objective-C
//
|
|
// XPRoomInfoView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class RoomInfoModel,XPRoomInfoContainerView;
|
|
@protocol XPRoomInfoContainerViewDelegate <NSObject>
|
|
|
|
///点击了返回按钮
|
|
- (void)xpRoomInfoContainerView:(XPRoomInfoContainerView *)view didClickBackButton:(UIButton *)sender;
|
|
|
|
///点击了设置按钮
|
|
- (void)xpRoomInfoContainerView:(XPRoomInfoContainerView *)view didClickSettingButton:(UIButton *)sender;
|
|
@end
|
|
|
|
@interface XPRoomInfoContainerView : UIView
|
|
///房间信息
|
|
@property (nonatomic,strong) RoomInfoModel *roomInfo;
|
|
///代理
|
|
@property (nonatomic,weak) id<XPRoomInfoContainerViewDelegate> delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|