もう一度助けを探しています...
現在、インターネット接続が必要なアプリのセクションが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];
}