首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

UIWebView 自定义网页中的alert提示框作派

2012-11-18 
UIWebView 自定义网页中的alert提示框风格?UIWebView 自定义网页中的alert提示框风格。???@interface UIWeb

UIWebView 自定义网页中的alert提示框风格

?

UIWebView 自定义网页中的alert提示框风格。

?

?

?

@interface UIWebView (JavaScriptAlert) - (void)webView:(UIWebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame;@end@implementation UIWebView (JavaScriptAlert)- (void)webView:(UIWebView *)sender runJavaScriptAlertPanelWithMessage:(NSString *)message initiatedByFrame:(WebFrame *)frame {    UIAlertView* dialogue = [[UIAlertView alloc] initWithTitle:nil message:message delegate:nil cancelButtonTitle:@"Okay" otherButtonTitles:nil];    [dialogue show];    [dialogue autorelease];}@end
?

?

热点排行