NoticeView.h 534 B

1234567891011121314151617181920
  1. //
  2. // NoticeView.h
  3. // 米兰港
  4. //
  5. // Created by 隋林栋 on 15/3/5.
  6. // Copyright (c) 2015年 Sl. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NoticeView : UIView
  10. @property (strong, nonatomic) UIControl *control;
  11. @property (strong, nonatomic) UIView *viewBG;
  12. @property (strong, nonatomic) UILabel *labelNotice;
  13. @property (nonatomic, strong) NSTimer * timer;
  14. @property (nonatomic) int numTime;
  15. - (void)showNotice:(NSString *)strNotice time:(CGFloat)timeShow frame:(CGRect)frame viewShow:(UIView *)viewShow;
  16. @end