- (void)webViewDidFinishLoad:(UIWebView *)wView
{
if (![wView isHidden]) {
//NSLog(@"%@", [wView description]);
[activityIndicator setHidden:YES];
[activityIndicatorView setHidden:YES];
NSString *strVar = [wView stringByEvaluatingJavaScriptFromString:@"document.location.href"];
//NSLog(@"%@", strVar);
NSArray *bannerURL = [strVar componentsSeparatedByString:@"targetURL="];
if ([bannerURL count] > 1) {
NSString *targetURL = [NSString stringWithFormat:@"%@", [bannerURL objectAtIndex:1]];
//NSLog(@"%@", targetURL);
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:targetURL]];
}
bannerURL = nil;
bannerURL = [strVar componentsSeparatedByString:@"targetVOD="];
if ([bannerURL count] > 1) {
[self btQTVideoAction:[bannerURL objectAtIndex:1]];
}
bannerURL = nil;
bannerURL = [strVar componentsSeparatedByString:@"jsonURL="];
if ([bannerURL count] > 1) {
self.jsonURL = [bannerURL objectAtIndex:1];
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@""
message:@"자신의 SNS에 공유합니다."
delegate:self
cancelButtonTitle:@"취소"
otherButtonTitles:@"facebook", @"twitter", nil];
[alert show];
[alert release];
}
}
}
'Developer > IOS' 카테고리의 다른 글
into html 효과.. (0) | 2013.09.04 |
---|---|
동영상 전체화면에서 Done버튼 클릭시 노티 (0) | 2013.09.03 |
UIWebView에서 링크 클릭시 Webview의 페이지 이동 (0) | 2013.08.27 |
Orientation Control , NavigationController , 네비게이션컨트롤러 하의 특정 뷰의 회전 제어 (0) | 2013.08.26 |
문자열 대치 비교시 유용함수 (0) | 2013.08.20 |