diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-12-01 21:45:16 -0800 |
---|---|---|
committer | Grant Paul <chpwn@chpwn.com> | 2010-12-01 21:45:16 -0800 |
commit | 7a11fbb993dd74d270f452507777595753458586 (patch) | |
tree | 64e96c4500862314851d6abf15a74e45c980bc79 /UICaboodle/BrowserView.mm | |
parent | a020a50efa5435fc5c7317297399196cd35d2c61 (diff) |
One less private class: goodbye UIProgressView, hello UIActivityIndicatorView.
Diffstat (limited to 'UICaboodle/BrowserView.mm')
-rw-r--r-- | UICaboodle/BrowserView.mm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/UICaboodle/BrowserView.mm b/UICaboodle/BrowserView.mm index 0e95fa8..bacc40b 100644 --- a/UICaboodle/BrowserView.mm +++ b/UICaboodle/BrowserView.mm @@ -1003,10 +1003,9 @@ static void $UIWebViewWebViewDelegate$webViewClose$(UIWebViewWebViewDelegate *se action:@selector(reloadButtonClicked) ]; - CGSize indsize = [UIProgressIndicator defaultSizeForStyle:UIProgressIndicatorStyleMediumWhite]; - indicator_ = [[UIProgressIndicator alloc] initWithFrame:CGRectMake(15, 5, indsize.width, indsize.height)]; - [indicator_ setStyle:UIProgressIndicatorStyleMediumWhite]; - [indicator_ startAnimation]; + indicator_ = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite]; + [indicator_ setFrame:CGRectMake(15, 5, [indicator_ frame].size.width, [indicator_ frame].size.height)]; + [indicator_ startAnimating]; [[loadingitem_ view] addSubview:indicator_]; [webview_ setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; |