1

もう一度助けを探しています...

現在、インターネット接続が必要なアプリのセクションが2つあります。1つはFlickrのフォトギャラリーで、もう1つはTwitterフィードです。これが、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

これを試してみてください:

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 に答える
0

この例を使用して、利用可能なネットワークがあり、デバイスがアップルの開発者サンプルサイトで利用可能なネットワークのいずれかに接続されているかどうかを確認したので、この例を使用する必要があると思います

于 2012-06-05T06:25:42.553 に答える