TSSCrollStatusBar是一个仿微博的下拉提示,大概效果如图
0.实现功能通过分类加属性,给UIScrollView添加了属性ts_scrollStatusBar,来显示和微博下拉刷新类似的下拉提示效果
可以多行
可以动态切换文案
更多功能有待完善
1.原理通过给UIScrollView写分类,在分类中添加属性,并实现set和get方法来给UIScrollView添加了属性:
@property (strog, oatomic) TSScrollStatusBar * ts_scrollStatusBar;2.控件封装TSScrollStatusBar带有万能创建方法,展示,隐藏方法,切换文案方法
//万能初始化- (istacetype)iitWithFrame:(CGRect)frame adShowTime:(CGFloat)showTime adStayTime:(CGFloat)stayTime adDismissTime:(CGFloat)dismissTime adBackColor:(UIColor *)backColor adTextColor:(UIColor *)textColor adAlpha:(CGFloat)alpha adTextFot:(CGFloat)textFot adStrig:(NSStrig *)strig;//展示 - (void)showWithAuthHidde:(BOOL)autoHidde adAimatio:(BOOL) aimatio;//隐藏- (void)dismissWithAimatio:(BOOL) aimatio;//切换文案- (BOOL)cofigWithStrig:(NSStrig *)strig;3.更多功能正在完善中比如加点击事件等...











评论