30 lines
584 B
Objective-C
30 lines
584 B
Objective-C
//
|
|
// BindWatchPopView.h
|
|
// XinjiangProject
|
|
//
|
|
// Created by Apple on 2026/3/12.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
typedef NS_ENUM(NSInteger, BindWatchType) {
|
|
BindWatchTypeBind = 0, // 绑定
|
|
BindWatchTypeUnbind // 解绑
|
|
};
|
|
|
|
@interface BindWatchPopView : UIView
|
|
|
|
- (void)show;
|
|
|
|
@property (nonatomic, assign) BindWatchType type;
|
|
|
|
@property (nonatomic, copy) NSString *serialNumber;
|
|
|
|
@property (nonatomic, copy) void(^actionBlock)(BindWatchType type,
|
|
NSString *serialNumber);
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|