欢迎光临
我们一直在努力

渐变背景label

建站超值云服务器,限时71元/月

渐变背景label

项目介绍:

NCGradientLabel

使用集成:

导入头文件

#import "NCGradientLabel.h"

创建NCGradientLabel对象

NCGradientLabel *actionLabel = [NCGradientLabel createLabelWithFrame:CGRectMake(100, 100,100, 52)
                        withTextAlignment:NSTextAlignmentCenter
                            withFont:[UIFont boldSystemFontOfSize:18.0]
                        withBackColor:[UIColor clearColor]
                        withTextColor:[UIColor whiteColor]
                            withTag:1000];

设置颜色渐变方向

actionLabel.gradientColors = @[[UIColor getColorWithHexString:@"#FF9900"],[UIColor getColorWithHexString:@"#FFd122"]];
actionLabel.directionType = type;

方向枚举值

enum GradientDirectionType{
    eGradientDirectionType_topToBottom = 0,////从上到下
    eGradientDirectionType_leftToRight = 1,//从左到右
    eGradientDirectionType_leftBottomToRightTop = 2,////从左下到右上
    eGradientDirectionType_leftTopToRightBootom = 3,//从左上到右下
};

文章若有不对地方,欢迎批评指正
NCGradientLabel如果喜欢或者有用请给star,谢谢

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 渐变背景label
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址