文字列を別のビューに渡すと、null 値になります。私のコードは次のとおりです。
ビューAddBarView.m
では、文字列があります:
nameAdded = nameField.text; //nameAdded is defined as NSString in AddBarView.h
NSLog(@"namefrom addbarview: %@", nameAdded); OK it works here , NsLog return the textfild
今、別のビューで AddLocationController.m
@synthesize nameAdded;
- (void)addViewControllerDidFinish:(AddBarView *)controller
{
AddBarView *controllerAdd;
NSLog(@"namefrom addbarview: %@", controller.nameAdded); //here
[self dismissModalViewControllerAnimated:YES];
}
NSLog
(null) 値を返します。私のせいはどこですか?
事前にtx!