// // BanerView.h // Machicomi // // Created by Phan Quang Hoang on 9/20/13. // Copyright (c) 2013 Phan Quang Hoang. All rights reserved. // #import "WebViewController.h" @interface BanerView : WebViewController { UIButton *rightButton; BOOL isLoadingWeb; } @property (nonatomic, strong) IBOutlet UIWebView *_webView; //@property (nonatomic, strong) NSString *_url; @property (nonatomic, strong) UIActivityIndicatorView * activityView; @property (nonatomic, strong) UIView *indicatorView; @property (nonatomic, strong) NSString *url; - (void)loadWebView; @end