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.
32 lines
612 B
32 lines
612 B
1 year ago
|
//
|
||
|
// QRcodeViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by xTT on 2017/7/17.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "baseViewController.h"
|
||
|
|
||
|
@interface QRcodeViewController : baseViewController
|
||
|
|
||
|
@property (weak, nonatomic) IBOutlet UIView *codeBG;
|
||
|
|
||
|
@property (weak, nonatomic) IBOutlet UIImageView *imageView_Code;//圈二维码
|
||
|
|
||
|
/**
|
||
|
设备头像
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UIImageView *deviceImage;//image
|
||
|
|
||
|
/**
|
||
|
设备名
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UILabel *label_name;//name
|
||
|
/**
|
||
|
imeiLabel
|
||
|
*/
|
||
|
@property (strong, nonatomic) IBOutlet UILabel *imeiLabel;
|
||
|
|
||
|
@end
|