美文网首页iOS开发
iOS开发--提示框--label实现

iOS开发--提示框--label实现

作者: 非非非常可爱的小仙女儿 | 来源:发表于2017-06-29 15:51 被阅读33次

    //    //声明一个label对象

    UILabel *tiplabel = [[UILabel alloc]initWithFrame:CGRectMake(100, SCREENHEIGHT/2-80, SCREENWIDTH-200, 80)];

    //设置提示内容

    tiplabel.backgroundColor = DJLightGrayColor;

    tiplabel.layer.cornerRadius=5;

    tiplabel.layer.masksToBounds = YES;

    tiplabel.textAlignment = NSTextAlignmentCenter;

    tiplabel.textColor = [UIColor whiteColor];

    [self.tableView addSubview:tiplabel];

    //

    if (pastboad.string) {

    NSLog(@"复制链接成功");

    [tiplabel setText:@"链接复制成功"];

    }else{

    NSLog(@"复制链接失败");

    [tiplabel setText:@"链接复制失败"];

    }

    //设置时间和动画效果

    [UIView animateWithDuration:2.0 animations:^{

    tiplabel.alpha =0.0;

    } completion:^(BOOL finished) {

    [tiplabel removeFromSuperview];

    }];

    相关文章

      网友评论

        本文标题:iOS开发--提示框--label实现

        本文链接:https://www.haomeiwen.com/subject/pcomcxtx.html