zoukankan      html  css  js  c++  java
  • ios23--动画做弹出提示框toast

        if (self.shopCarView.subviews.count == 0) {
            /*
            [UIView animateWithDuration:2.0 animations:^{ // 执行动画
                self.showHUB.text = @"当前购物车已空,赶紧买买买~";
                self.showHUB.alpha = 1.f;
            } completion:^(BOOL finished) { // 完成
                [UIView animateWithDuration:1.0 delay:1.0 options:UIViewAnimationOptionCurveLinear animations:^{
                    self.showHUB.alpha = 0;
                } completion:nil];
            }];
            */
            [self showWithInfo:@"当前购物车已空,赶紧买买买~"];
        }
    }
    
    @property (weak, nonatomic) IBOutlet UILabel *showHUB; //提示文字,刚开始是隐藏的。连线连过去的。
    
    - (void)showWithInfo: (NSString *)info{
        [UIView animateWithDuration:2.0 animations:^{ // 执行动画
            self.showHUB.text = info;
            self.showHUB.alpha = 1.f;
        } completion:^(BOOL finished) { // 完成
            [UIView animateWithDuration:1.0 delay:1.0 options:UIViewAnimationOptionCurveLinear animations:^{
                self.showHUB.alpha = 0;
            } completion:nil];
        }];
    }
  • 相关阅读:
    版本控制器 git
    JS 严格模式
    backquote
    linux内存监控 free
    好的linux网站
    linux查看进程开始时间
    命令之 ulimit
    using JSTL
    javax.servlet.jsp.PageContext cannot be resolved to a type
    jstl c
  • 原文地址:https://www.cnblogs.com/yaowen/p/7469657.html
Copyright © 2011-2022 走看看