Displaying a message in iOS which has the same functionality as Toast in Android

前端 未结 19 1702
逝去的感伤
逝去的感伤 2020-12-12 12:35

I need to know if there is any method in iOS which behaves like Toast messages in Android. That is, I need to display a message which is dismissed automatically after few se

19条回答
  •  感情败类
    2020-12-12 13:30

    For the ones that using Xamarin.IOS you can do like this:

    new UIAlertView(null, message, null, "OK", null).Show();
    

    using UIKit; is required.

提交回复
热议问题