Reputation: 240
My UITababarController image moving up down when I am coming back from any controller back to UITabbarController.
You can check the following the link for the video:-
https://drive.google.com/file/d/1M06Uzik0qwiMJr8k0PxwoFVm4GfpGyXL/view?usp=sharing
Screens sizes (4.7) having this issue
Upvotes: 1
Views: 204
Reputation: 768
Thanks Abhijit,
To bringing this issue into our notice.
Yes, UITababarController image is fluctuating when you come back to parent view controller.
You can fix it by using below line of code
[self.tabBar setTranslucent:NO];
Or simply set the isTranslucent = false
in UITabBarController
Happy to help you :)
Upvotes: 1