LoadMoreView.h 395 B

12345678910111213141516171819202122
  1. //
  2. // LoadMoreView.h
  3. // Manzi
  4. //
  5. // Created by wei on 12-9-22.
  6. // Copyright (c) 2012年 wei. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LoadMoreView : UIView{
  10. UIButton *mLoadMore;
  11. }
  12. @property (nonatomic, assign) id delegate;
  13. @property (nonatomic, assign) SEL OnLoadMore;
  14. @property (nonatomic,strong) UILabel *mlbText;
  15. - (void)StartLoading;
  16. - (void)StopLoading;
  17. @end