0

こんにちは、Web リンクが添付されたアラート ビューを実装したいと考えています。

出来ますか?アラート ビューのボタンのように表示されるべきではありません。

4

3 に答える 3

2

テキストビューを UIAlertView に追加し、これでプロパティを有効にします

textview.dataDetectorTypes=UIDataDetectorTypeLink;

それが動作します!!

于 2012-06-04T08:04:43.380 に答える
1

UIAlertView

UIAlertView *_alert = [[UIAlertView alloc] initWithTitle:@"Search Google?" 
                                                 message:@"Launch Google and search for something?" 
                                                delegate:self 
                                       cancelButtonTitle:@"Nah" 
                                       otherButtonTitles:@"Google It!",nil];
[_alert show];

UIAlertView デリゲート

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex 
{
    if( buttonIndex == 1 ) /* NO = 0, YES = 1 */
    {
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://google.com"]];
    }
}
于 2012-06-04T07:39:38.827 に答える
-1

採用してinitWithTitle:message:delegate:cancelButtonTitle:otherButtonTitles:ください。otherButtonTitlesリンクのタイトルを、雇用者として追加できます

 - (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex{}

リンク ボタンがクリックされたときに、Web ページに移動するなどのアクションを起動します。

于 2012-06-04T07:40:35.367 に答える