NoContentView.h 476 B

1234567891011121314151617181920212223
  1. //
  2. // NoContentView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 06/03/15.
  6. // Copyright (c) 2014 ncomz. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "CustomLabel.h"
  10. @interface NoContentView : UIView
  11. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  12. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLabelHeight;
  13. + (id)viewFromNib;
  14. - (void)setText:(NSString *)text;
  15. - (void)setLink:(NSString *)link wishMenuId:(KNMenuId)menuId;
  16. @end