溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ios怎么自定義滑桿效果

發(fā)布時間:2022-04-27 10:48:43 來源:億速云 閱讀:164 作者:iii 欄目:開發(fā)技術

本篇內(nèi)容介紹了“ios怎么自定義滑桿效果”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

先讓我們看看效果:

ios怎么自定義滑桿效果

主要實現(xiàn)的代碼:

UIImage *thumbWithLevel(float aLevel)
{
    float INSET_AMT = 1.5f;
    CGRect baseRect = CGRectMake(0, 0, 40, 100);
    CGRect thumbRect = CGRectMake(0, 40, 40, 20);
    
    UIGraphicsBeginImageContext(baseRect.size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    
    [[UIColor darkGrayColor] setFill];
    CGContextAddRect(context, CGRectInset(thumbRect, INSET_AMT, INSET_AMT));
    CGContextFillPath(context);
    
    [[UIColor whiteColor] setStroke];
    CGContextSetLineWidth(context, 2);
    CGContextAddRect(context, CGRectInset(thumbRect, 2 * INSET_AMT, 2 * INSET_AMT));
    CGRect ellipseRect = CGRectMake(0, 0, 40, 40);
    [[UIColor colorWithWhite:aLevel alpha:1] setFill];
    CGContextAddEllipseInRect(context, ellipseRect);
    CGContextFillPath(context);
    
    NSString *numString = [NSString stringWithFormat:@"%0.2f",aLevel];
    UIColor *textColor = (aLevel > 0.5) ? [UIColor blackColor] : [UIColor whiteColor];
    UIFont *font = [UIFont fontWithName:@"Georgia" size:15];
    NSMutableParagraphStyle *style = [[NSMutableParagraphStyle alloc] init];
    style.lineBreakMode = NSLineBreakByCharWrapping;
    style.alignment = NSTextAlignmentCenter;
    NSDictionary *attr = @{NSFontAttributeName:font,NSParagraphStyleAttributeName:style,NSForegroundColorAttributeName:textColor};
    [numString drawInRect:CGRectInset(ellipseRect, 0, 6) withAttributes:attr];
    
    [[UIColor grayColor] setStroke];
    CGContextSetLineWidth(context, 3);
    CGContextAddEllipseInRect(context, CGRectInset(ellipseRect, 2, 2));
    CGContextStrokePath(context);
    
    UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    
    return  theImage;
}

在這里我們通過context的方法將圖片畫出了,對于性能有點要求,但是現(xiàn)在應該不在乎這點性能了

- (void)updateThumb
{
    if ((self.value < 0.98) && (ABS(self.value - previousValue) < 0.1f)) {
        return;
    }
    
    UIImage *customImg = thumbWithLevel(self.value);
    [self setThumbImage:customImg forState:UIControlStateHighlighted];
    previousValue = self.value;
}

通過滑塊的值來使上面的值進行變化,更加的直觀

[self setThumbImage:simpleThumb() forState:UIControlStateNormal];
  [self addTarget:self action:@selector(startDrag:) forControlEvents:UIControlEventTouchDown];
  [self addTarget:self action:@selector(updateThumb) forControlEvents:UIControlEventValueChanged];
  [self addTarget:self action:@selector(endDrag:) forControlEvents:UIControlEventTouchUpOutside | UIControlEventTouchUpInside];

“ios怎么自定義滑桿效果”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關的知識可以關注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

ios
AI