26 lines
503 B
Objective-C
26 lines
503 B
Objective-C
//
|
|
// SessionRiskView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/8/11.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class SessionRiskView;
|
|
@protocol SessionRiskViewDelegate <NSObject>
|
|
|
|
- (void)sessionRiskViewCloseButtonClick:(SessionRiskView *)view;
|
|
|
|
@end
|
|
|
|
@interface SessionRiskView : UIView
|
|
@property (nonatomic,copy) NSString *userId;
|
|
///代理
|
|
@property (nonatomic,weak) id<SessionRiskViewDelegate> delegate;
|
|
@property (nonatomic,copy) NSString *warning;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|