您好,登錄后才能下訂單哦!
////屏幕
#define SHENGHUO_WIDTH ([UIScreen mainScreen].bounds.size.width)
#define SHENGHUO_HEIGHT ([UIScreen mainScreen].bounds.size.height)
#import "SHFindVC.h"
//
////HTML5接入測試
//#import "WebViewJavascriptBridge.h"
//#import "Html5ReportWebView.h"
@interface SHFindVC ()
@end
@implementation SHFindVC
- (void)viewDidLoad {
[super viewDidLoad];
_commodityHtml.delegate=self;
NSUserDefaults *userInfo = [NSUserDefaults standardUserDefaults];
NSMutableArray *userid = [userInfo objectForKey:@"userId"];
//正式服
NSString *newUrl = [NSString stringWithFormat:@"%@",userid];
NSLog(@"%@",newUrl);
NSURL *htmlUrl = [NSURL URLWithString:@"http://"];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"%@%@",htmlUrl,newUrl]];
NSLog(@"%@",url );
[_commodityHtml loadRequest:[NSURLRequest requestWithURL:url]];
}
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {
NSString *absoluteString = request.URL.absoluteString;
NSLog(@"TAP == %@",absoluteString);
if ([absoluteString rangeOfString:@"login"].location != NSNotFound) {
UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"提示" message:@"申請請求登錄!!" delegate:nil cancelButtonTitle:@"確定" otherButtonTitles: nil];
[alertView show];
}
return YES;
}
- (IBAction)addContent:(id)sender {
NSString * js = @" var p = document.createElement('p'); p.innerText = 'new Line';document.body.appendChild(p);";
[_commodityHtml stringByEvaluatingJavaScriptFromString:js];
}
//隱藏頂部導航欄
- (void)viewWillAppear:(BOOL)animated {
[self setFullScreen:YES];
}
- (void)viewWillDisappear:(BOOL)animated {
[self setFullScreen:NO];
}
- (void)setFullScreen:(BOOL)fullScreen {
// 狀態條
[UIApplication sharedApplication].statusBarHidden = fullScreen;
// 導航條
[self.navigationController setNavigationBarHidden:fullScreen];
// tabBar的隱藏通過在初始化方法中設置hidesBottomBarWhenPushed屬性來實現。
}
@end
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。