23 lines
484 B
Objective-C
23 lines
484 B
Objective-C
//
|
|
// IfishBlackListCenterViewController.h
|
|
// Ifish
|
|
//
|
|
// Created by imac on 16/5/16.
|
|
// Copyright © 2016年 imac. All rights reserved.
|
|
//
|
|
|
|
#import "CenterViewController.h"
|
|
/**
|
|
* 设备未授权 主界面 此界面 小圆中显示 @“该设备未授权请联系厂家”
|
|
*/
|
|
@interface IfishBlackListCenterViewController : CenterViewController
|
|
/**
|
|
* 未授权 label
|
|
*/
|
|
|
|
@property(nonatomic,strong) UILabel *stateLabel;
|
|
@property(nonatomic,copy) NSString *stateText;
|
|
|
|
|
|
@end
|