// // FloatingWindow.h // nochange // // Created by mac on 2024/7/29. // #ifndef FloatingWindow_h #define FloatingWindow_h #import #import "XSHttpHelper.h" @interface FloatingWindow : UIWindow @property (nonatomic, strong) UILabel *nameLabel; @property (nonatomic, strong) UILabel *ipLabel; @property (nonatomic, strong) UILabel *infoLabel; @property (nonatomic, strong) UILabel *deviceTypeLabel; @property (nonatomic, strong) UIButton *actionButton; @property (nonatomic, strong) UIButton *settingsButton; @property (nonatomic, strong) UITextView *logTextView; @property (nonatomic, strong) XSHttpHelper *http; @property (nonatomic, strong) NSURLSessionDataTask *dataTask; - (void)changeBackgroundColor; - (instancetype)initWithFrame; @end #endif /* FloatingWindow_h */