Make a UIView invisible


/ Published in: Objective C
Save to your folder(s)

It set the alpha to zero so the view will be invisible


Copy this code and paste it in your HTML
  1. [UIView beginAnimations:nil context:NULL];
  2. [UIView setAnimationDuration:0.5];
  3. [myImageView setAlpha:0];
  4. [UIView commitAnimations];

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.