IFTweetLabelを使用していて、リンクを認識していましたが、IFTweetLabelが作成するボタンでWebviewを開いています。私はNSLogを実行していて、ボタンが押されたときに各リンクを理解していることをはっきりと見ることができますが、何らかの理由でURLが開かれません。IFTweetLabel RegexKitLite open UIWebView
以下は、私がビューを表示し、文字列をwebViewにロードするために使用しているコードです。これらはすべて、webviewの読み込み以外に機能します。
ご意見をいただければ幸いです。ありがとうございました!
- (void)handleTweetNotification:(NSNotification *)notification
{
[UIView beginAnimations:@"animateView" context:nil];
[UIView setAnimationDuration:1.0];
CGRect viewFrame = [MainwebView frame];
viewFrame.origin.x = 220;
MainwebView.frame = viewFrame;
MainwebView.alpha = 1.0;
web.alpha = 1.0;
MainwebView.layer.shadowColor = [[UIColor blackColor] CGColor];
MainwebView.layer.shadowOffset = CGSizeMake(1.0f, 1.0f);
MainwebView.layer.shadowRadius = 8.0f;
MainwebView.layer.shadowOpacity = 1.0f;
[self.view addSubview:MainwebView];
[UIView commitAnimations];
[web loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:tweetLabel.text]]];
NSLog(@"handleTweetNotification: WTF notification = %@", notification);
}