You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
1.4 KiB

//
// WatchHomeDevMainCell.h
// tongxin
//
// Created by Apple on 2020/4/8.
// Copyright © 2020 xTT. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CBAutoScrollLabel.h"
#import "Device.h"
#import "User.h"
NS_ASSUME_NONNULL_BEGIN
@interface WatchHomeDevMainCell : UITableViewCell
/**
View
*/
@property (strong, nonatomic) IBOutlet UIView *deviceMainView;
/**
// 选中的主设备的 头像
*/
@property (strong, nonatomic) IBOutlet UIImageView *deviceMainImageView;
/**
// 选中的主设备的 名称
*/
@property (strong, nonatomic) IBOutlet UILabel *deviceMainNameLabel;
/**
*/
@property (strong, nonatomic) IBOutlet UILabel *deviceMainLocatTimeLabel;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *TimeLabelWidthNSLC;
/**
*/
@property (strong, nonatomic) IBOutlet UIImageView *deviceLocatTypeImage;
/**
*/
@property (strong, nonatomic) IBOutlet CBAutoScrollLabel *deviceLocatAddressLabel;
/**
*/
@property (strong, nonatomic) IBOutlet UIImageView *mainBatteryImageView;
/**
Label
*/
@property (strong, nonatomic) IBOutlet UILabel *mainBatteryLabel;
- (void)setBattery:(int)battery;
@end
NS_ASSUME_NONNULL_END