2009-10-03 5 views
0

donc voici le code abrégé:UITextField Crazyness

- (void)viewDidLoad { 
     [super viewDidLoad]; 
     currentLocation = [[UITextField alloc] init]; 
     currentLocation.delegate = self; 
    ........ 
    } 

    -(void) setState:(NSString *)state andCity: (NSString *)city { 

     //currentLocation.text = [NSString stringWithFormat:@"%@, %@",state,city]; 
     currentLocation.text = @"what the shnizzle?"; 

     NSLog(@"state = %@, and city = %@",state,city); 
     NSLog(@"currentLocation.text = %@",currentLocation.text); 
} 

et est ici la sortie de la console:

2009-10-03 16:00:06.311 iParkNow![1061:207] state = (null), and city = New York 
2009-10-03 16:00:06.315 iParkNow![1061:207] currentLocation.text = (null) 

quelqu'un a une idée de comment cela est possible?

Répondre

1

On dirait que currentLocation est nul. Avez-vous vérifié qu'il est réglé correctement?

Questions connexes