Skip to content

Jameszjhe/METoast

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

METoast

METoast is a view to show toast message. It's a queue based FIFO toast.

METoast

Usage

Show a toast message

[METoast toastWithMessage:@"On the top of the screen!"];

Configure a toast

METoastAttribute *attr = [[METoastAttribute alloc] init];
attr.location = METoastLocationMiddle;
[METoast setToastAttribute:attr];
[METoast toastWithMessage:@"On the middle of the screen!"];
[attr release];

Complete block

[METoast toastWithMessage:@"Hello James"
    	andCompleteBlock:^{
    		// TODO: things to do
        }];

About

METoast is a view to show toast message.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published