J'ai principaux UIView où je l'affichage des données différentes. Puis-je mettre un bouton qui affiche les sous-vue comme ceci:
- (IBAction) buttonClicked:(id)sender
{
UIView *newView = [[UIView alloc] initWithFrame:CGRectMake(25,25,50,20)];
UILabel *newLabel = [[UILabel alloc] initWithFrame:CGRectMake(25,25,50,25)];
newLabel.text = @"some text";
[newView addSubview:newLabel];
[self.view addSubview:newView];
[newLabel release];
[newView release];
}
newView s'affiche bien, mais il n'a pas d'animer lui-même de toute façon, il apparaît immédiatement. Comment puis-je ajouter un certain genre de l'animation à l'newView apparaît? Comme le zoom ou le glisser vers le bas ou quelque chose comme ça. Est-il un simple code?