HolderView.h 611 B

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