How to Toast message in Swift?

后端 未结 22 1221
暖寄归人
暖寄归人 2020-12-22 19:18

Is there any way to Toast message in swift ?

I have tried in objective c but could not find solution in swift.

[self.view makeToast:@\"Account create         


        
22条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-22 19:34

    There is a 3rd party library that supports customizable toast notification with single line of code. Here is a simple example of it:

    import Toast_Swift
    
    ...
    
    // basic usage
    self.view.makeToast("This is a piece of toast")
    
    // toast with a specific duration and position
    self.view.makeToast("This is a piece of toast", duration: 3.0, position: .top)
    

    https://github.com/scalessec/Toast-Swift

    (Updated for Swift 3/4+)

提交回复
热议问题