NoResultView.h 613 B

1234567891011121314151617181920212223
  1. //
  2. // NoResultView.h
  3. // 乐销
  4. //
  5. // Created by mengxi on 17/1/19.
  6. // Copyright © 2017年 ping. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NoResultView : UIView
  10. //属性
  11. @property (strong, nonatomic) UILabel *labelTitle;
  12. @property (nonatomic, strong) UIView *lineTop;//someview need top
  13. @property (nonatomic, strong) UIImageView *ivNoResult;//image for specific vc
  14. #pragma mark 创建
  15. + (instancetype)initWithFrame:(CGRect)frame;
  16. //show
  17. - (void)showInView:(UIView *)viewShow frame:(CGRect)frame;
  18. //reset with image
  19. - (void)resetWithImageName:(NSString *)imageName;
  20. - (void)resetView;
  21. @end