UiTabbarController

Keep tab as selected UITabBarController

  Recently, I came across a situation where I have to  force a current selected tab to remain selected in UITabBarController, when user select or tap a different tab. So i though worthy of sharing the code with all the community. To make this happen, one can use UITabBarController delegate – (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController […]

Keep tab as selected UITabBarController Read More »

Tips and Tricks for ios development

In this post, i am going to tell you some of the tips and tricks for different scenarios of IOS development. 1. Scale an UIImageView or view               To scale an UIImageView/UIView in IOS we have CGAffineTransformScale with which we can scale our UIImageView/UIView.In this method we will pass current

Tips and Tricks for ios development Read More »

iPhone Development:Create a UITabBarController programmatically in iPhone SDK

Tags: #UITabBarController #programmatically #Tutorial #IOS8 Today, in this post i am going to tell you how we can create UITabBarController programmatically in objective C/ iPhone SDK.Though you can also chose a template for UITabBarController in the beginning of your project as the same is by default provided in Xcode by APPLE Inc. In my development career i came

iPhone Development:Create a UITabBarController programmatically in iPhone SDK Read More »

iPhone Development:Hiding TabBarController while pushing viewController in iPhone SDK

In many of our apps, we want to show a viewController that does not had a bottom tab but our app has been laid out on TabBarController.The default behavior of a TabBarController app is that it contains tab at the bottom of screen and is remained static throughout our whole app.Here’s problem occurred, when we

iPhone Development:Hiding TabBarController while pushing viewController in iPhone SDK Read More »