Toast notification Xamarin iOS
本文关键字:iOS Xamarin notification Toast | 更新日期: 2023-09-27 18:30:04
我正在Xamarin(C#)中为iOS编写一个应用程序。
什么相当于iOS中的Android"吐司通知"?
来自文件:
toast在一个小弹出窗口中提供有关操作的简单反馈。它只填充消息所需的空间,并且当前活动保持可见和交互式。例如,在发送电子邮件之前,离开电子邮件会触发一个"草稿保存"吐司,让您知道以后可以继续编辑。吐司会在超时后自动消失。
例如,在Android(C#)中,我可以这样显示它们:
Toast.MakeText(this, "Added " + counttext.Text +" pcs to cart" , ToastLength.Long).Show();
如何为iOS编写相同的内容?
谢谢你的回答。
在Xamarin iOS中,您必须使用自定义设计的UIView和动画来实现相同的效果
public void ShowToast(String message, UIView view)
{
UIView residualView = view.ViewWithTag(1989);
if (residualView != null)
residualView.RemoveFromSuperview();
var viewBack = new UIView(new CoreGraphics.CGRect(83, 0, 300, 100));
viewBack.BackgroundColor = UIColor.Black;
viewBack.Tag = 1989;
UILabel lblMsg = new UILabel(new CoreGraphics.CGRect(0, 20, 300, 60));
lblMsg.Lines = 2;
lblMsg.Text = message;
lblMsg.TextColor = UIColor.White;
lblMsg.TextAlignment = UITextAlignment.Center;
viewBack.Center = view.Center;
viewBack.AddSubview(lblMsg);
view.AddSubview(viewBack);
roundtheCorner(viewBack);
UIView.BeginAnimations("Toast");
UIView.SetAnimationDuration(3.0f);
viewBack.Alpha = 0.0f;
UIView.CommitAnimations();
}
使用Xamarin内置组件BigTed
https://components.xamarin.com/view/btprogresshud
BTProgressHUD.ShowToast("Hello from Toast");
您可以尝试https://github.com/andrius-k/Toast
它以nuget包Toast.ios
的形式提供用法:
// import
using GlobalToast;
Toast.MakeToast("message").SetDuration(0.5).Show();
自iOS 9起,建议使用UIAlertController类向用户显示反馈。
示例用法:
var alertController = UIAlertController.Create("Your Count", "Added 1 PC", UIAlertControllerStyle.Alert);
alertController.AddAction(UIAlertAction.Create("OK", UIAlertActionStyle.Default, (action) => Console.WriteLine("OK Clicked.")));
PresentViewController(alertController, true, null);
需要记住的一件事是,您必须在UIViewController中才能显示警报。这是因为UIAlertController是UI视图控制器的子类。