123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // ViewController.h
- // FirstLink
- //
- // Created by mac on 14-8-25.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKStatusTipView.h"
- #import <MBProgressHUD.h>
- #import "FKRefreshControl.h"
- #import "FLEmptyFooter.h"
- #import "JGActionSheet.h"
- #import <UIImageView+WebCache.h>
- @interface FLViewController : UIViewController
- <UINavigationControllerDelegate, JGActionSheetDelegate>
- @property (nonatomic, strong) NSDictionary *openURLPara;
- @property (nonatomic, strong) FKStatusTipView *statusView;
- @property (nonatomic, strong) MBProgressHUD *hudView;
- @property (nonatomic, strong) FKRefreshControl *refreshControl;
- @property (nonatomic, strong) FLEmptyFooter *emptyFooterView;
- @property (nonatomic, assign) BOOL isPageHasMoreData;
- @property (nonatomic, assign) BOOL convertPopDelegate; // 防止侧滑失效,默认YES,childCotroller请设为No
- //@property (nonatomic, strong) UINavigationBar *customNaviBar;
- - (void)forceRefresh;
- - (void)showSystemErrorTipInView:(UIView*)view;
- - (void)showStatusTipInView:(UIView*)view image:(UIImage *)image title:(NSString*)title;
- - (void)finishLoadingData;
- - (void)initRefreshControlWithTableView:(UITableView*)tableView;
- - (void)showLoginActionMenu;
- - (void)dismissMenuWithNotLogin;
- - (void)configLeftNaviItem;
- - (void)hideDefaultLeftNaviItem;
- - (void)hideHud:(BOOL)animated;
- - (void)clickLeftNaviItem;
- @end
|