2009-04-03 20 views
0

アプリケーションのUIWebViewでselectタグを使用していますが、いくつかの問題があります。UIWebViewのiPhoneドロップダウンボックス

  1. 選択ボックスをクリックするとUIPickerViewが開きますが、無効にする方法はありますか?
  2. 選択ボックスをクリックすると消えてしまいます。その場所をもう一度クリックすると、これを止める方法がありますか?私はいつもそれを見せたいからです。ここ

私のコードです:

webView = [[UIWebView alloc] initWithFrame:cellRectangle]; 
NSString *content = [NSString stringWithString:@""]; 
content = [content stringByAppendingString:@"<select style='width:100%;  height:100%'>"]; 
for(int i = 0; i<[seasons count]; i++){ 
Season *aSeason = [seasons objectAtIndex:i]; 
content = [content stringByAppendingString:@"<option"]; 
if(aSeason.n_isCurrent = 1) content = [content stringByAppendingString:@" selected=\"yes\""]; 
content = [content stringByAppendingString:@">"]; 
content = [content stringByAppendingString:aSeason.c_Season]; 
content = [content stringByAppendingString:@"</option>"]; 
} 
content = [content stringByAppendingString:@"</select>"]; 

webView.backgroundColor = [UIColor clearColor]; 
webView.scalesPageToFit = NO; 
[webView setOpaque:NO]; 
[webView loadHTMLString:content baseURL:nil]; 

答えて

1

はできるだけ早くあなたがWebViewのをオフに任意の機能を渡すよう、ずっとあなたが行動について行うことができますがありません。あなたがあなた自身のカスタムビューと適切コードにそれを行う必要があるでしょう、特定の行動をしたい場合は

1)いいえ

2)いいえ

:あなたの特定の質問に答えるために。

関連する問題