Created
August 29, 2011 21:05
-
-
Save shurane/1179411 to your computer and use it in GitHub Desktop.
Twitter Result
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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