12345678910111213141516171819202122 |
- //
- // EMBadgeLabel.h
- // ChatDemo-UI3.0
- //
- // Created by XieYajie on 2019/1/17.
- // Copyright © 2019 XieYajie. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface EMBadgeLabel : UIView
- @property (nonatomic, strong) UIFont *font;
- @property (nonatomic, strong) NSString *value;
- @end
- NS_ASSUME_NONNULL_END
|