Aucune description

FLViewController.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // ViewController.h
  3. // FirstLink
  4. //
  5. // Created by mac on 14-8-25.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKStatusTipView.h"
  10. #import <MBProgressHUD.h>
  11. #import "FKRefreshControl.h"
  12. #import "FLEmptyFooter.h"
  13. #import "JGActionSheet.h"
  14. #import <UIImageView+WebCache.h>
  15. @interface FLViewController : UIViewController
  16. <UINavigationControllerDelegate, JGActionSheetDelegate>
  17. @property (nonatomic, strong) NSDictionary *openURLPara;
  18. @property (nonatomic, strong) FKStatusTipView *statusView;
  19. @property (nonatomic, strong) MBProgressHUD *hudView;
  20. @property (nonatomic, strong) FKRefreshControl *refreshControl;
  21. @property (nonatomic, strong) FLEmptyFooter *emptyFooterView;
  22. @property (nonatomic, assign) BOOL isPageHasMoreData;
  23. @property (nonatomic, assign) BOOL convertPopDelegate; // 防止侧滑失效,默认YES,childCotroller请设为No
  24. //@property (nonatomic, strong) UINavigationBar *customNaviBar;
  25. - (void)forceRefresh;
  26. - (void)showSystemErrorTipInView:(UIView*)view;
  27. - (void)showStatusTipInView:(UIView*)view image:(UIImage *)image title:(NSString*)title;
  28. - (void)finishLoadingData;
  29. - (void)initRefreshControlWithTableView:(UITableView*)tableView;
  30. - (void)showLoginActionMenu;
  31. - (void)dismissMenuWithNotLogin;
  32. - (void)configLeftNaviItem;
  33. - (void)hideDefaultLeftNaviItem;
  34. - (void)hideHud:(BOOL)animated;
  35. - (void)clickLeftNaviItem;
  36. @end