A tip is displayed on the header. For example, if the tableview slide prompt is displayed, it will slide back to the top.

Source: Internet
Author: User

A tip is displayed on the header. For example, if the tableview slide prompt is displayed, it will slide back to the top.
A tip is displayed on the header. If the tableview sliding prompt is displayed, it will slide back to the top by Wu xueying.


Add the content in [[[UIApplicationsharedApplication] delegate] window:
# ImpZ finished? Http://www.bkjia.com/kf/ware/vc/ "target =" _ blank "class =" keylink "> vcnQg" 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 = @ "Click Back to Top ";
TipsLabel. font = [UIFontsystemFontOfSize: 12];
TipsLabel. textAlignment = NSTextAlignmentCenter;
}
If ([[[UIApplicationsharedApplication] delegate] window]! = Nil ){
[[[[UIApplicationsharedApplication] delegate] window] addSubview: tipsLabel];
[[[UIApplicationsharedApplication] delegate] window] setWindowLevel: UIWindowLevelStatusBar];
}
[UIViewanimateWithDuration: 0.3 animations: ^ {
TipsLabel. frame = CGRectMake (0, 0, view. frame. size. width, 20 );
}];
}

+ (Void) hide {
[UIViewanimateWithDuration: 0.3 animations: ^ {
TipsLabel. frame = CGRectMake (0,-20, width, 20 );
} Completion: ^ (BOOL finished ){
[TipsLabelremoveFromSuperview];
TipsLabel = nil;
}];
}

@ End

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.