WToast 2.1.2

WToast 2.1.2

TestsTested
LangLanguage Obj-CObjective C
License Unlicense
ReleasedLast Release Jun 2020

Maintained by Nik Dyonin.



WToast 2.1.2

  • By
  • Nik Dyonin

WToast is a simple info box for iOS inspired by Android Toast.

Requirements

iOS 8.0 and higher.

Features

  • Show toast object with custom text
  • Show toast object with custom image

Usage

Show toast with text

[WToast showWithText:@"This is a short test."];
[WToast showWithText:@"This is a long test." duration:kWTLong];
[WToast showWithText:@"This is a long test." duration:kWTLong roundedCorners:YES];
[WToast showWithText:@"This is a long test." duration:kWTLong roundedCorners:YES gravity:kWTGravityMiddle];

Show toast with image

[WToast showWithImage:[UIImage imageNamed:@"toast-image"]];
[WToast showWithImage:[UIImage imageNamed:@"toast-image"] duration:10];
[WToast showWithImage:[UIImage imageNamed:@"toast-image"] duration:12 roundedCorners:NO];
[WToast showWithImage:[UIImage imageNamed:@"toast-image"] duration:12 roundedCorners:NO gravity:kWTGravityTop];

Hide current toast

[WToast hideToast];
[WToast hideToastAnimated:YES];

Demo

WToast demo

License

This tiny library is public domain. If you like you can mention Brite Apps for it.