ios中進度條控制項的用法總結。
進度條控制項是ios開發中乙個簡單的系統控制項,使用總結如下:
初始化乙個進度條:
- (instancetype)initwithprogressviewstyle:(uiprogressviewstyle)style;
注意:1.用這個方式初始化的進度條系統會預設給乙個長度。
2.進度條的長度可以通過frame來設定,但是只有前三個引數有效。
3.風格列舉如下:
typedef ns_enum(nsinteger, uiprogressviewstyle) ;
設定進度條風格樣式
@property(nonatomic) uiprogressviewstyle progressviewstyle;
設定進度條進度(0.0-1.0之間,預設為0.0)
@property(nonatomic) floatprogress;
設定已走過進度的進度條顏色
@property(nonatomic, retain) uicolor* progresstintcolor;
設定未走過進度的進度條顏色
@property(nonatomic, retain) uicolor* tracktintcolor;
設定進度條已走過進度的背景圖案和為走過進度的背景圖案(ios7後好像沒有效果了)
@property(nonatomic, retain) uiimage* progressimage;
@property(nonatomic, retain) uiimage* trackimage;
設定進度條進度和是否動畫顯示(動畫顯示會平滑過渡)
- (void)setprogress:(float)progress animated:(bool)animated;
IOS UIProgressView的簡單介紹
uiprogressview的使用 uiprogressview oneprogressview uiprogressview alloc init oneprogressview.frame cgrectmake 0,30,320,30 設定uiprogressview 的位置和大小 onepro...
python控制項 python控制項怎麼用
標籤label 按鈕buttn 輸入框entry這些都是python的控制項,那麼他們如何使用呢?標籤label 可以顯示文字和點陣圖from tkinter import root tk root.minsize 300,200 text i want to study python label ...
自己用的日曆控制項
var striframe with webcalendar.iframe function webcalendar 初始化日曆的設定 var webcalendar new webcalendar function calendar 主調函式 o.display webcalendar.ifram...