0

我在使用 Bool 时出错,在添加模态视图之前,现在它说 bool 未定义。我不明白为什么会这样,除非因为我正在为我的模态视图使用另一个笔尖。

我现在需要打电话或改变我的恩惠吗?请指教。

    //
//  UrbanAgentViewController.m
//  UrbanAgent
//
//  Created by Dwayne Stephens on 4/2/12.
//  Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import "UrbanAgentViewController.h"
#import "NewContactController.h"

@implementation UrbanAgentViewController

// our own buttonTapped method
-(IBAction) buttonTapped: (id) sender {
    NewContactController *ivc = [[NewContactController alloc] init];
    ivc.delegate = self;

    UINavigationController *nc = [[UINavigationController alloc]
                                  initWithRootViewController:ivc];

    [self presentModalViewController:nc animated:YES];

    [ivc release];
    [nc release];

}

-(void) doneButtonPressed: (NSArray *) values
{
    [self dismissModalViewControllerAnimated:YES];

    NSString *message =
    [[NSString alloc]
     initWithFormat:@"The values were %@, %@, %@, %@, %@, and %@",
     [values objectAtIndex:0], [values objectAtIndex:1], [values objectAtIndex:2],
     [values objectAtIndex:3], [values objectAtIndex:4], [values objectAtIndex:5]];

    UIAlertView *alert =
    [[UIAlertView alloc] initWithTitle:@"Values Passed" 
                               message:message delegate:nil
                     cancelButtonTitle:@"Excellent!" otherButtonTitles:nil ];

    [alert show];
    [alert release];
    [message release];


/*
// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
    if (self) {
        // Custom initialization
    }
    return self;
}
*/

/*
// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}
*/


/*
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
    [super viewDidLoad];
}
*/


// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    return YES;
}

- (void)didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}


- (void)dealloc {
    [super dealloc];
}

@end
4

1 回答 1

3

您需要在doneButtonPressed:.

于 2012-04-09T22:22:19.980 回答