我想将一个网址的可点击链接添加到UIAlertView
的邮件中。
这样,当用户看到警报视图时,他们可以触摸消息内的链接。或者,他们可以通过单击“确定”按钮进入下一步。
有可能吗?怎么样?
答案 0 :(得分:7)
我看到实现您尝试的方法的唯一方法是通过自定义警报视图。
您可以采取几种方法。一个是UIAlertView的子类,在这里你可以找到一个简短的教程:Subclass UIAlertView。在您的子类中,您可以以任何方式构建警报,以实现启用触摸的文本。看看this tutorial是否有办法。
答案 1 :(得分:1)
我今天遇到了这个问题,我需要在我的警报视图中提供可点击的电话号码和地址,并且因为自定义警报视图不可能而被困住了一段时间。
经过一些研究后,您似乎可以将一个textview添加到一个似乎可以解决我的问题的警报视图中。这是我的方法,允许动态缩放警报视图(注意:使用C#
与Xamarin):
// create text view with variable size message
UITextView alertTextView = new UITextView();
alertTextView.Text = someLongStringWithUrlData;
// enable links data inside textview and customize textview
alertTextView.DataDetectorTypes = UIDataDetectorType.All;
alertTextView.ScrollEnabled = false; // is necessary
alertTextView.BackgroundColor = UIColor.FromRGB(243, 243, 243); // close to alertview default color
alertTextView.Editable = false;
// create UIAlertView
UIAlertView Alert = new UIAlertView("Quick Info", "", null, "Cancel", "OK");
Alert.SetValueForKey(alertTextView, (Foundation.NSString)"accessoryView");
// IMPORTANT/OPTIONAL need to set frame of textview after adding to subview
// this will size the text view appropriately so that all data is shown (also resizes alertview
alertTextView.Frame = new CoreGraphics.CGRect(owner.View.Center, alertTextView.ContentSize);
Alert.Show();