//
// CLLockLabel.h
// WadeMobileFunc
//
// Created by Mac on 2020/2/10.
// Copyright © 2019年 asiainfo. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface CLLockLabel : UILabel
/*
* 普通提示信息
*/
- (void)showNormalMsg:(NSString *)msg;
/*
* 警示信息
*/
- (void)showWarnMsg:(NSString *)msg;
@end
|