// // NoContentView.h // kneet // // Created by Jason Lee on 06/03/15. // Copyright (c) 2014 ncomz. All rights reserved. // #import #import "CustomLabel.h" @interface NoContentView : UIView @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintLabelHeight; + (id)viewFromNib; - (void)setText:(NSString *)text; - (void)setLink:(NSString *)link wishMenuId:(KNMenuId)menuId; @end