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.
34 lines
810 B
34 lines
810 B
// |
|
// MoreFunctionsViewController.h |
|
// watch |
|
// |
|
// Created by weichao on 2018/6/20. |
|
// Copyright © 2018年 weichao. All rights reserved. |
|
// |
|
|
|
#import "baseTabViewController.h" |
|
|
|
@interface MoreFunctionsViewController : baseTabViewController |
|
@property (strong, nonatomic) IBOutlet UICollectionView *funcCollectionView; |
|
|
|
|
|
/** |
|
远程关机 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *remoteShutdownBtn; |
|
/** |
|
回复出厂设置 |
|
*/ |
|
@property (strong, nonatomic) IBOutlet UIButton *recoverBtn; |
|
|
|
@property (strong, nonatomic) IBOutlet UIScrollView *scrollView; |
|
|
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeight; |
|
|
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *remoteBottomNSLC; |
|
|
|
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *recoverBottomNSLC; |
|
|
|
|
|
|
|
@end
|
|
|