This is a simple Toast.You can use the toast to show some friendly text. LLToast is my first framework. Welcome to improve my framework.
Pop is available on CocoaPods. Just add the following to your project Podfile:(Please use the github srouce)
pod 'LLToast', '~> 1.0.0’
- success msg
[LLToast showSuccess:@"这是一个成功的消息"];- error msg
[LLToast showError:@"这是一个错误的消息"];- simple toast which have a background image
UIImage *bgImg = [UIImage imageNamed:@"bgImg"];
[LLToast showText:@"这是一条带背景的消息" withBackgroundImg: bgImg];