我正在尝试在我的 iOS 应用程序中创建一个对话框(应用程序是 PhoneGap 应用程序)。
我正在使用这篇文章中的代码:如何在 iOS 中实现弹出对话框
以下是链接中的代码
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"No network connection"
message:@"You must be connected to the internet to use this app."
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
我已将此代码放入AppDelegate.m
方法中
- (BOOL)application:(UIApplication)...
应用程序运行但对话框不显示。
问题是什么?
我已经更新了代码如下
下面的代码在我的 appdelegate.m 中
//reachability code
if (networkStatus == ReachableViaWifi)
{
while (true)
//show progress bar
}
else
{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:@"title" message:@"message" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:@"cancel", nil];
[alert show];
}
警告框未显示。我究竟做错了什么?