0
我正在使用以下代碼來顯示警報控制器,但有時它會收到上述消息並且警報控制器會停止響應。這是什麼意思?固定?嘗試在*上呈現*(已存在)(空)
+(void)showAlertFor:(UIViewController *)viewController Title:(NSString*)title WithMessage:(NSString *)message
{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Error" message:message preferredStyle:UIAlertControllerStyleAlert]; //Getting the alert view controller
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
}];
[alertController addAction:ok];
[viewController presentViewController:alertController animated:YES completion:nil];
}
檢查您是否提供多個控制器。 –
這可以怎麼做? – TestShroff
@TestShroff你可以從同一個地方的兩個地方調用'showAlertFor'嗎?或者同時解僱VC? – PiyushRathi