스토리 보드에서 ViewController로 컨트럴 드래그 하면 아래와 같이 property를 생성할 수 있다.
@property (strong, nonatomic) IBOutlet UIProgressView *CountProgress;
필요한 부분에서
CountProgress.progress=0.5;
위와 같이 사용하면 된다.
progress는 0~1사이의 값을 가진다.
'프로그래밍 > iOS' 카테고리의 다른 글
[ios]버튼에 이미지 넣기 (0) | 2015.04.08 |
---|---|
[ios]가속도계 방향 (0) | 2015.04.08 |
[ios] 문자열을 숫자로, 숫자를 문자열로 (0) | 2015.04.08 |
[ios] 대소문자 구분 없이 str구분하고 싶을 때 (0) | 2015.04.08 |
[ios] implicit declaration of function 'function name' is invalid in c99 (0) | 2015.04.08 |