I'm following this guide to create some animations to my app and thought about writing a very light not distracting animation to my tab bar. I've searched apple guidelines but didn't saw anything against it, yet, I don't think I've ever seen an app doing something similar. Is that because it's not allowed or is there another reason I'm missing? Any one knows an app that does something similar?
Asked
Active
Viewed 989 times
0
-
What are you planning to do? I have a simple slide in/out animation for the tab bar in one of my apps and had no problems getting it into the App Store. – muffe Dec 17 '12 at 14:05
-
I was thinking about a fade in, fade out when the center button is pushed to get more screen real estate. I'd love to see the functionality of your tab bar. – Segev Dec 17 '12 at 14:09
-
2The code I'm using is http://stackoverflow.com/a/5272497/725594 – muffe Dec 17 '12 at 14:22
-
If your app is in the appstore that answers my question. You can write it as an answer so I'll be able to accept. Thanks – Segev Dec 17 '12 at 15:06
1 Answers
1
I'm using a simple slide in/out effect for the tab bar in my App.
No problems in the review.
The code I'm using is at https://stackoverflow.com/a/5272497/725594
-
I tried out your code that works great but I'm using a raised center button in my tabbar and when I hide the tab bar the center button (image) is smeared over the screen and doesn't disappear. Any idea what can cause this? – Segev Dec 17 '12 at 19:09
-
You could try editing both your show and hide function. if([view isKindOfClass:[UITabBar class]]) should be if([view isKindOfClass:[UITabBar class]] || [view isKindOfClass:[UIImageView class]]) – muffe Dec 18 '12 at 08:50
-