首页 > 代码库 > 头部显示提示,如tableview滑动提示滑回顶部
头部显示提示,如tableview滑动提示滑回顶部
头部显示提示,如tableview滑动提示滑回顶部
by 伍雪颖
就是在[[[UIApplicationsharedApplication]delegate]window]添加要的内容:
#import "TipsBar.h"
@implementation TipsBar
UILabel *tipsLabel;
int width;
+ (void)showInView:(UIView *)view {
width = view.frame.size.width;
if (tipsLabel ==nil) {
tipsLabel = [[UILabelalloc]initWithFrame:CGRectMake(0, -20, view.frame.size.width,20)];
tipsLabel.backgroundColor = [UIColorblackColor];
tipsLabel.textColor = [UIColorwhiteColor];
tipsLabel.text =@"点击返回顶部";
tipsLabel.font = [UIFontsystemFontOfSize:12];
tipsLabel.textAlignment =NSTextAlignmentCenter;
}
if ([[[UIApplicationsharedApplication]delegate]window] !=nil) {
[[[[UIApplicationsharedApplication]delegate]window]addSubview:tipsLabel];
[[[[UIApplicationsharedApplication]delegate]window]setWindowLevel:UIWindowLevelStatusBar];
}
[UIViewanimateWithDuration:0.3animations:^{
tipsLabel.frame =CGRectMake(0,0, view.frame.size.width,20);
}];
}
+ (void)hide {
[UIViewanimateWithDuration:0.3animations:^{
tipsLabel.frame =CGRectMake(0, -20,width,20);
} completion:^(BOOL finished) {
[tipsLabelremoveFromSuperview];
tipsLabel =nil;
}];
}
@end
头部显示提示,如tableview滑动提示滑回顶部
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。