1234567891011121314151617181920212223242526272829303132333435363738 |
- /**
- 当表单里没有数据时。就可以显示这个
- 暂无数据 点击刷新
- */
- #import <UIKit/UIKit.h>
- @interface HolderView : UIView
- {
- UILabel* titLabel;
-
- BlockTypeVo fresh;
-
- /**点击后通知刷新
- */
- UIButton* btnFul;
- }
- @property(nonatomic,copy) NSString* title;
- -(void)freshBlock:(BlockTypeVo)block;
- @end
- /**
- 、现在要处理holdView的显示问题了。
- 、任何时候。
- 、主线程里。要hide一下、
- 、异步开始。设为NO。但不可显示。
- 、异步后。设为model.cnt
- 、
- 、如果是block调用的。需要先removeAll
- 、
- */
|