I'm writing an application for iOS in Xamarin (C#).
What is the equivalent of Android's 'toast notifications' in iOS?
From documentation:
A toast provides simple feedback about an operation in a small popup. It only fills the amount of space required for the message and the current activity remains visible and interactive. For example, navigating away from an email before you send it triggers a "Draft saved" toast to let you know that you can continue editing later. Toasts automatically disappear after a timeout.
For example in Android (C#) I can show them like this:
Toast.MakeText(this, "Added " + counttext.Text +" pcs to cart" , ToastLength.Long).Show();
How do I write the same for iOS?
Thank's for answer.