|
//
// TPHttpController.h
// ThePaperDemo
//
// Created by scar1900 on 14-10-13.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SCGIFImageView.h"
@interface TPHttpController : UIViewController<RemoteDelegate>
@property(nonatomic, strong)UIView *waitBackView;
@property(nonatomic, strong)SCGIFImageView *waitCursor;
@property(nonatomic,weak)ASIHTTPRequest *request;
@property(nonatomic, strong)UIViewController* rootViewController;
@property(nonatomic, strong)UIView *timeOutView;
- (void)presentController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion;
- (void)dismissViewController:(UIViewController *)viewControllerToDismiss animated:(BOOL)flag completion:(void (^)(void))completion;
- (void)networkTimeOut;//网络超时逻辑
- (void)refreshPage;
@end
|