SimpleToast 0.1.1

SimpleToast 0.1.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Jul 2015
SPMSupports SPM

Maintained by Hannes Lohmander.



  • By
  • Hannes Lohmander

Provides Android-like API for displaying toasts with keyboard aware positioning on iOS.

Toast

Usage

First you need to initialize the keyboard observer somewhere. It doesn't really matter where.

import Toast

...

Toast.initKeyboardObserver()

...

Then use just use it as follows (with the library imported):

Toast.makeText("My toast message", Toast.LENGTH_LONG).show()

Settings

There's a few appearance settings you can adjust:

blur: Bool

Right there's no background at all if you turn this of. To be fixed...

blurStyle: UIBlurEffectStyle

cornerRadius: CGFloat

margin: CGFloat

Margin to parent view (ie. the window)

padding: CGFloat

Padding between the background view and the text label.

textColor: UIColor

animationDuration: NSTimeInterval

Example:

Set the values like so:

Toast.appearance.cornerRadius = 2

License

MIT Licensed