MyRadarView.h 471 B

12345678910111213141516171819202122
  1. //
  2. // MyRadarView.h
  3. // XMEye
  4. //
  5. // Created by Megatron on 4/2/15.
  6. // Copyright (c) 2015 Megatron. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface MyRadarView : UIView
  10. @property (nonatomic,strong) UIImageView *scanSign;
  11. @property (nonatomic,strong) UIImageView *bgView;
  12. @property (nonatomic,strong) NSTimer *myTimer;
  13. @property (assign,nonatomic) int angle;
  14. -(void)startSeek; // 开始搜索动画
  15. -(void)stopSeek; // 停止搜索动画
  16. @end