1

再次寻求帮助...

我的应用程序目前有 2 个部分需要互联网连接,1 个是通过 Flickr 的照片库,另一个是 Twitter Feed,我想知道这是否是 UIAlertView 的正确代码......我可以让它工作一个按钮,仅此而已!

{
-(void)didTap_roundedRectButton1:(id)sender forEvent:(UIEvent *)event {
UIAlertView *alertView = [[UIAlertView alloc] init];
alertView.title = @"You are not connected to the Internet!";
alertView.message = @"Please check your connection and try again...";
[alertView addButtonWithTitle:@"Ok"];
[alertView show];
[alertView release];
} 
4

2 回答 2

0

我认为您需要使用此示例,因为我已经使用它来检查是否有可用的网络以及设备是否连接到任何一个网络它在苹果的开发人员示例站点示例链接上可用

于 2012-06-05T06:25:42.553 回答
0

你应该试试这个:

UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"You are not connected to the Internet!" 
                                                  message:@"Please check your connection and try again..."
                                                 delegate:nil 
                                        cancelButtonTitle:@"OK" 
                                        otherButtonTitles: nil];

  [alertView show];
  [alertView release];

你能发布代码吗?如何创建 UIButton?

于 2012-06-04T14:41:20.650 回答