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];
        }];
    }
  • 相关阅读:
    高级排序
    递归
    Linked List
    中缀、后缀、前缀表达式
    队列(queue)
    栈(Stack)
    数组(Array)
    数据结构和算法
    常见排序
    开启
  • 原文地址:https://www.cnblogs.com/yaowen/p/7469657.html
Copyright © 2011-2022 走看看