1234567891011121314151617181920212223 |
- /**
- 当表单里没有数据时。就可以显示这个
- */
- #import <UIKit/UIKit.h>
- @interface HolderView : UIView
- {
- UILabel* titLabel;
-
- BlockTypeVo fresh;
-
- /**点击后通知刷新
- */
- UIButton* btnFul;
- }
- @property(nonatomic,copy) NSString* title;
- -(void)freshBlock:(BlockTypeVo)block;
- @end
|