第1步:建立一個名為"UIProgressView"的"Single View Application"專案
第2步:拖拉UIProgressView至畫面中
第3步:建立UIProgressView的IBOutlet物件參考於ViewController中
- 3.1 對UIProgressView按右鍵,按任"New Referencing Outlet"右邊的圓點,並拖拉至ViewController類別中
- 3.2 於"Name"欄位輸入"progressView",並按下"Connect"
- 3.3 確認progressView Outlet建立完成
第4步:加入一個UIButton按鈕,以手動增加UIProgressView的進度。
- 4.1 加入UIButton按鈕,並連結"Touch Up Inside"事件,連結的方法取名為"touch"
- 4.2 加入程式,於"touch:"方法中透過累加UIProgressView的progress屬性的值,來增加UIProgressView的進度
- (IBAction)touch:(id)sender {
self.progressView.progress = self.progressView.progress + 0.1;
}
self.progressView.progress = self.progressView.progress + 0.1;
}
第6步:執行程式,按下按鈕手動模擬進度
檔案連結:UIProgressView.zip