To hide or show a button in a view I am using
myButton.hide = YES or myButton.hide = NO
I am looking for the way to show a button animatedly such as slowly fade in
Does anybody know how to do it,Please help
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
UIViewanimation.Here is simple implementation:
Here is a good tutorial for this: How To Use UIView Animation Tutorial
You might want to take a look at the documentation too: UIView Class Reference
There are also similar QA’s in this website: e.g. How can I animate a UIButton Alpha property
Hope it helps!