UpgradeView.h 652 B

12345678910111213141516171819202122232425
  1. //
  2. // UpgradeView.h
  3. // BuguLive
  4. //
  5. // Created by yy on 16/10/9.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^UpgradeBlock)(void);
  10. @interface UpgradeView : UIView
  11. @property (weak, nonatomic) IBOutlet UIView *bgView;
  12. @property (weak, nonatomic) IBOutlet UIView *displayView; //展示view
  13. @property (weak, nonatomic) IBOutlet UILabel *upgradeLabel; //提示消息
  14. @property (weak, nonatomic) IBOutlet UILabel *exLabel;
  15. @property (weak, nonatomic) IBOutlet UIButton *comfirmBtn; //知道了
  16. @property (nonatomic, copy) UpgradeBlock upgradeBlock;
  17. + (instancetype)EditNibFromXib;
  18. @end