i have NSString value in addViewController and i want to display this value in UILabel of DetailsViewController

前端 未结 5 1265
别跟我提以往
别跟我提以往 2020-12-12 06:45

I am newbie to programming. Any help could be greatly appreciated.

It\'s in AddViewController.

NSLog(@\"Am Currently at %@\",locatedAt);

DetailsOfPe         


        
5条回答
  •  青春惊慌失措
    2020-12-12 07:41

    try to replace

     [addressLabel setText:testAddressStr];
    

    with the following

     [addressLabel setText:self.testAddressStr];
    

提交回复
热议问题