私は、ユーザーがのWebViewリンク上でインターネットやクリックに接続されていない場合は、ALTERを追加します。到達可能性XcodeのiOS5を
-(void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Can't connect. Please check your internet Connection" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
[alert release];
}
問題がここにある!
ボイド( - )エラーになります:()無効な引数の型「のボイド」単項表現に
これは中です.cファイルまたは.mファイル?これはObjective C @ Implementationブロック内にありますか?以前の関数はすべてファイルに入れ子になっていますか? – hotpaw2