我是编程新手。任何帮助都将不胜感激。
它在 AddViewController 中。
NSLog(@"Am Currently at %@",locatedAt);
DetailsOfPeopleViewController *details=[DetailsOfPeopleViewController alloc];
details.testAddressStr=[NSString stringWithFormat:@"%@",locatedAt];
details.testAddressStr
在这里显示值,但它没有将此值传递给 DetailsViewController。
的值locatedAt
显示在 AddViewController 中。当我尝试在 DetailsViewController 类的 UILabel 中显示此值时,它不会在标签中显示该值。
在 DetailsViewController.h 中:
NSString *testAddressStr;
@property(nonatomic,strong) NSString *testAddressStr;
@property(nonatomic,retain)IBOutlet UILabel *addressLabel;
在 DetailsViewController.m 中:
[addressLabel setText:testAddressStr];
我也在尝试这种方式:
addressLabel.text=[NSString stringWithFormat:@"%@",testAddressStr];
我并没有真正明白我犯错的地方......