CountDownView.h 605 B

1234567891011121314151617181920
  1. //
  2. // CountDownView.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 16/11/28.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. // 用用直播 开始 的倒计时
  8. #import <UIKit/UIKit.h>
  9. @interface CountDownView : UIView
  10. @property (weak, nonatomic) IBOutlet UILabel *numLab;//倒计时lab
  11. @property (nonatomic, strong) dispatch_source_t timer;
  12. @property (assign,nonatomic)int secondsCountDown;
  13. // 加载一个倒计时View
  14. + (void)showCountDownViewInLiveVCwithFrame:(CGRect)rect inViewController:(UIViewController *)liveViewController block:(void(^)(BOOL finished))block;
  15. @end