线太细时用UIView或UIImageView都会导致闪烁 但用UILabel就好了

注意:  这个地方用UILabel  若用UIView或者UIImageView的话因为线太细会导致闪烁

但用UILabel就没事

//竖线

    for (int i = 0; i < KeyCategoryLineCount-1; i++) {

        UILabel *verLine = [[UILabel alloc] init];

        verLine.backgroundColor = GNRGBCOLOR(193, 156, 103);

        verLine.frame = CGRectMake(categoryWidth*(i+1), KeyBannerScrollHeight, 0.25, height_Y*categoryHeight);

        [self.bgScrollView addSubview:verLine];

    }


你可能感兴趣的:(线太细时用UIView或UIImageView都会导致闪烁 但用UILabel就好了)