Abhijit Hadkar
Abhijit Hadkar

Reputation: 240

UITabbar image moving up down

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

Answers (1)

Nazrul Islam
Nazrul Islam

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

Related Questions