次の警告が表示されます-
warning: passing argument 1 of 'dismissWithClickedButtonIndex:animated:' makes integer from pointer without a cast
[alertForLoading dismissWithClickedButtonIndex:nil animated:YES];
dismissWithClickedButtonIndex:animated
引数としてaNSInteger
が必要で、nil を指定しています。
nil を、次のように押したいボタンのインデックスに置き換えます。
[alertForLoading dismissWithClickedButtonIndex:0 animated:YES];
「dismissWithClickedButtonIndex」は任意の整数を受け入れます。このメソッドは、次の UIAlertViewDelegate メソッドを呼び出します
- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex
詳細については、リファレンスを参照してください: UIAlertViewDelegate プロトコル リファレンス