- if ([webview_ respondsToSelector:@selector(setDataDetectorTypes:)])
- [webview_ setDataDetectorTypes:UIDataDetectorTypeAutomatic];
- else
- [webview_ setDetectsPhoneNumbers:NO];
+ indicator_ = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhite] autorelease];
+ [indicator_ setFrame:CGRectMake(15, 5, [indicator_ frame].size.width, [indicator_ frame].size.height)];
+ [indicator_ setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin];
+
+ [self applyLeftButton];
+ [self applyRightButton];
+ } return self;
+}
+
+- (NSString *) applicationNameForUserAgent {
+ return nil;
+}
+
+- (void) loadView {
+ CGRect bounds([[UIScreen mainScreen] applicationFrame]);
+
+ webview_ = [[[CyteWebView alloc] initWithFrame:bounds] autorelease];
+ [webview_ setDelegate:self];
+ [self setView:webview_];