-initWithProgressViewStyle:
指定したスタイルでプログレスビューを初期化して返します。
-(id)initWithProgressViewStyle:(UIProgressViewStyle)style
解説
返り値
( id )
引数
( UIProgressViewStyle )style
UIProgressViewStyleDefault
UIProgressViewStyleBar
フレームワーク
UIKit
クラス
UIProgressView
使用可能
iOS2.0
参照
例文
#pragma mark UIProgressView initWithProgressViewStyle: - (IBAction)method001:(id)sender { UIProgressView *progressView = [[UIProgressView alloc] initWithProgressViewStyle:UIProgressViewStyleDefault]; CGRect frame = CGRectMake(self.view.center.x-100.0, self.view.center.y-16.0, 200.0, 32.0); progressView.frame = frame; [self.view addSubview:progressView]; }