Skip to content

Instantly share code, notes, and snippets.

@shurane
Created August 29, 2011 21:05
Show Gist options
  • Save shurane/1179411 to your computer and use it in GitHub Desktop.
Save shurane/1179411 to your computer and use it in GitHub Desktop.
Twitter Result
// TwitterPreview
- (void) webViewDidStartLoad:(KUIWebView *) webView {
}
- (void) webViewDidFinishPageLoad(KUIWebView *) webView {
}
- (void) webViewDidFinishLoad(KUIWebView *) webView {
}
- (void) sitePreviewControllerClickOpenNewTab:(NSURL*) url {
}
- (void) twitterResult:(NSString*)handle {
NSURL* targetUrl = [NSURL URLWithString:[NSString
stringWithFormat:@"http://twitter.com/#!/%@",
handle]];
NSMutableURLRequest* req = [[NSMutableURLRequest alloc] initWithURL:targetUrl];
CGSize size = [OrientationUtils getCurrentSize];
SitePreviewController* viewController = [[SitePreviewController alloc] init];
viewController.delegate = self;
viewController.modalPresentationStyle = UIModalPresentationFormSheet;
viewController.modalTransitionStyle = UIModalTransitionStyleCoverVertical;
[[UIApplication sharedApplication].keyWindow.rootViewController presentModalViewController:googleSearchPreview animated:YES];
viewController.view.superview.bounds = CGRectMake(0, 0, size.width-80, size.height-100);
viewController.view.superview.center = CGPointMake(size.width/2.0, size.height/2.0);
viewController.view.superview.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight;
[viewController loadRequest:req];
[req release];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment