GameResultView.h 574 B

12345678910111213141516171819
  1. //
  2. // GameResultView.h
  3. // BuguLive
  4. //
  5. // Created by 布谷 on 2017/6/7.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface GameResultView : UIView
  10. @property (weak, nonatomic) IBOutlet UIImageView *resultImageView;
  11. @property (weak, nonatomic) IBOutlet UIView *resultNumberView;
  12. @property (weak, nonatomic) IBOutlet UILabel *resultNumberLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *winTitleLabel;
  14. @property (weak, nonatomic) IBOutlet UILabel *winNameLabel;
  15. @property (weak, nonatomic) IBOutlet UILabel *winNumberLabel;
  16. @end