| 1234567891011121314 |
- //
- // RemindingView.h
- // BorrowMoney
- //
- // Created by JuYi on 2017/6/30.
- // Copyright © 2017年 JuYi. All rights reserved.
- // 没有数据 提示view
- #import <UIKit/UIKit.h>
- @interface RemindingView : UIView
- @property (nonatomic, strong) UIImageView *remindView; // 提示图片
- @property (nonatomic, strong) UILabel *remindLabel; // 提示语
- @end
|