Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 365 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 365 Bytes

crouton-ios

iOS "clone" of the Android Crouton framework

The goal of this small framework is to offer a quick and easy way to show notifications.

eg.

  • an error
  • an information message
  • a message that asks the user to "wait"

Examples

#import "Crouton.h"
...
[Crouton showAlert:@"This is an alert" inView:self.view];
...