| 1234567891011121314151617181920212223 |
- //
- // NoContentView.h
- // kneet
- //
- // Created by Jason Lee on 06/03/15.
- // Copyright (c) 2014 ncomz. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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
|