HolderView.h 327 B

1234567891011121314151617181920212223
  1. /**
  2. 当表单里没有数据时。就可以显示这个
  3. */
  4. #import <UIKit/UIKit.h>
  5. @interface HolderView : UIView
  6. {
  7. UILabel* titLabel;
  8. BlockTypeVo fresh;
  9. /**点击后通知刷新
  10. */
  11. UIButton* btnFul;
  12. }
  13. @property(nonatomic,copy) NSString* title;
  14. -(void)freshBlock:(BlockTypeVo)block;
  15. @end