2017-02-23 3 views
0

https://www.google.co.in/객관적인 C에서 https 링크를 여는 방법은 무엇입니까?

https://en-gb.facebook.com/login/

나는 성공적으로 링크 위에 열려 ...하지만 아래 링크를 왜 웹보기에서 열 수없는 이유는 무엇입니까? 이 문제를 해결하는 방법? ViewController.m에서

@property (strong, nonatomic) IBOutlet UIWebView *webview; 

이 파일 출구를 만들 ViewController.h 파일에서

https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2

- (void)viewDidLoad { 
    [super viewDidLoad]; 
    // Do any additional setup after loading the view. 

    UIWebView *webView = [[UIWebView alloc]init]; 
    webView.frame = self.view.frame; 
    [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:self.urlString]]]; 
    [self.view addSubview:webView]; 
    NSLog(@"%@", self.urlString); 
    // https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2 
} 

이 self.urlString 서버에서 온다 ...

+0

사용하려면 다음 링크를 따라 : // 대신 https : // –

+0

사실이이 온라인 데이터 (웹 서비스 개념) 서버에서 온, 어떻게 할 수있다 – Marking

+0

나는 그것이 작동하지 않는 것을 시도했다 ... – Marking

답변

0

viewDidLoad

_webview.delegate = self; 

[_webview loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://%@",URLSTRING FROM SEVER]]]]; 
+0

이것은 내 문자열이 서버에서 오는 것입니다 ... https : //itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2 – Marking

+0

이미 https : //를 http : //로 변경하려고했지만 ..... 리디렉션되었습니다. – Marking

1

부터 Link.

더 나은 사용자 환경을 위해 itunes 링크가 UIWebView에서 열리지 않습니다. iTunes 콘텐츠에 모바일의 iTunes 미리보기 페이지가 없습니다. iOS가 자동으로 itunes.apple.com 링크를 인식하고 저장소를 엽니 다.

itunes 링크를 열려면 SKStoreProductViewController을 사용해야합니다. 그것은 당신의 응용 프로그램에 itunes 항목을 엽니 다. 아이튠즈 뮤직 스토어를 사용 SKStoreProductViewController

How to links to apps to app store

Documentation

0
NSString *fullURL = @"https://itunes.apple.com/in/developer/whatsapp-inc/id310634000?mt=8&uo=2"; 
NSURL *url = [NSURL URLWithString:fullURL]; 
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; 
[_viewWeb loadRequest:requestObj];