2015-09-21 139 views
0

我想使這個自定義欄在標籤和進度條根據對方的寬度調整..是否有一個開放源代碼爲此。ios中的自定義進度條

enter image description here

現在,我只需使用內置的進度條,但我不知道如何調整進度欄,並相對於進度條長度的文本。

cell.candidatesPollProgress.backgroundColor = [UIColor blueColor]; 
    cell.candidatesPollProgress.progressTintColor = [UIColor blueColor]; 
    cell.candidatesPollProgress.trackTintColor = [UIColor blueColor]; 

我從哪裏開始?任何幫助表示讚賞。

回答

1

爲了製作像共享屏幕截圖的UI,您需要使用具有背景色的UIView而不是UIprogressview。將UILabel(百分比文本)的Leading space Constraint設置爲UIView(進度視圖)的尾部。調整UIView的寬度爲(progressValue)/(maxValue) * (max Width of Progress View)

+0

謝謝,正是我在找什麼。 – soldiershin