iOS 消息提示 JRToast
- 授权协议: Apache
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/zhanjiarong/JRToast
软件介绍
JRToast, 类似于安卓Toast的一种提示效果, 继续操作不需要等待其消失。
在需要使用JRToast的控制器中 #import "JRToast.h"
- (IBAction)defaultToast:(UIButton *)sender
{
[JRToast showWithText:@"默认持续2秒,在屏幕中间"];
}
- (IBAction)durationToast:(UIButton *)sender
{
[JRToast showWithText:@"持续3秒,在屏幕中间" duration:3.0f];
}
- (IBAction)topOffsetToast:(UIButton *)sender
{
[JRToast showWithText:@"距离顶部50" topOffset:50.0f];
}
- (IBAction)topOffsetAndDuration:(UIButton *)sender
{
[JRToast showWithText:@"距离顶部100,持续3秒" topOffset:100.0f duration:3.0f];
}
- (IBAction)bottomToast:(UIButton *)sender
{
[JRToast showWithText:@"距离底部50" bottomOffset:50.0f];
}
- (IBAction)bottomAndDuration:(UIButton *)sender
{
[JRToast showWithText:@"距离底部100,持续3秒" bottomOffset:100.0f duration:3.0f];
}
产品经理全栈运营实战笔记
林俊宇 / 化学工业出版社 / 49.8元
本书凝结作者多年的产品运营经验,读者会看到很多创业公司做运营的经验,书中列举了几十个互联网产品的运营案例去解析如何真正做好一个产品的冷启动到发展期再到平稳期。本书主要分为六篇:互联网运营的全面貌;我的运营生涯;后产品时代的运营之道;揭秘刷屏事件的背后运营;技能学习;深度思考。本书有很多关于产品运营的基础知识,会帮助你做好、做透。而且将理论和作者自己的案例以及其他人的运营案例结合起来,会让读者更容易......一起来看看 《产品经理全栈运营实战笔记》 这本书的介绍吧!
