38 lines
803 B
Objective-C
38 lines
803 B
Objective-C
//
|
|
// FloatingWindow.h
|
|
// nochange
|
|
//
|
|
// Created by mac on 2024/7/29.
|
|
//
|
|
|
|
#ifndef FloatingWindow_h
|
|
#define FloatingWindow_h
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#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 */
|