0

次の警告が表示されます-

 warning: passing argument 1 of 'dismissWithClickedButtonIndex:animated:' makes integer from pointer without a cast

[alertForLoading dismissWithClickedButtonIndex:nil animated:YES];
4

2 に答える 2

1

dismissWithClickedButtonIndex:animated引数としてaNSIntegerが必要で、nil を指定しています。

nil を、次のように押したいボタンのインデックスに置き換えます。

 [alertForLoading dismissWithClickedButtonIndex:0 animated:YES];
于 2012-05-16T05:08:38.587 に答える
0

「dismissWithClickedButtonIndex」は任意の整数を受け入れます。このメソッドは、次の UIAlertViewDelegate メソッドを呼び出します

- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex

詳細については、リファレンスを参照してください: UIAlertViewDelegate プロトコル リファレンス

于 2012-05-16T05:34:39.927 に答える