|
//
// TPWebViewContoller.h
// ThePaperDemo
//
// Created by scar1900 on 14/10/28.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "TPHttpController.h"
@interface TPWebViewContoller : TPHttpController
@property(nonatomic, strong)NSString *url;
@property(nonatomic, strong)UIView *naviBarView;
@property(nonatomic, strong)UIButton *safariButton;
@property(nonatomic, strong)UIWebView *webView;
@property(nonatomic, strong)UIActivityIndicatorView *activityView;
@end
|