У меня есть UILabel
, который не обновляется при первой загрузке, но загружается правильно при каждой последующей загрузке.
Вот фрагмент кода.Опять же, как я уже сказал, только при первой загрузке будет отображаться то, что указано в метке в xib, то есть label
, а во второй раз будет загружена строка label.text= @"Glass, Paper, Cans, Textiles, Card, Shoes and Books";
.
-(IBAction)showDetails:(id)sender{
NSLog(@"Annotation Click");
self.userProfileVC.title=((UIButton*)sender).currentTitle;
if([((UIButton*)sender).currentTitle isEqualToString:@"Asda"])
self.userProfileVC.label.text= @"Glass, Paper, Cans, Textiles, Card, Shoes and Books";
[UIView beginAnimations:@"Curl Page Down" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationTransition:UIViewAnimationTransitionCurlDown
forView:self.view cache:YES];
//Adjust the Subview by butting up to status bar
self.userProfileVC.view.frame = CGRectMake(0, 0, 320, 480);
//Add userProfileVC as a subview
[self.view addSubview:userProfileVC.view];
[UIView commitAnimations];
}