objective C

iPhone Development:Push notification in Iphone SDK and Add custom sound to Push Notification

Tags: #PushNotification #Tutorial #IOS8  Push notification is a great feature that gave app developer/owner a chance to remind their app user’s that something new happened to the app. Mostly push notification is used in the apps that heavily depends upon remote server and required to have attention of their user’s. e.g. like a store app, if […]

iPhone Development:Push notification in Iphone SDK and Add custom sound to Push Notification 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:Add Navigation controller to single viewController template in Xcode

In this post i am going to tell you how could you add a NavigationController(used in iPhone Objective C) to navigate from one viewController to other viewController in iPhone when you chose single view template in xcode. Suppose you are creating a new project in xcode and you have chosen singleview template as your starting

iPhone Development:Add Navigation controller to single viewController template in Xcode Read More »

iPhone Development:Check for internet connection in Iphone SDK

Most of our apps required to communicate with remote server so that they can connect with centralized database for our app. To achieve this functionality we use web-services for remote connection and made our request using NSUrlConnection Class. Now as we all already know ho to connect with remote server from our app one of

iPhone Development:Check for internet connection in Iphone SDK Read More »

iPhone Development:format a NSDate to DDMMYYYY

Tags: #NSDate  #NSDateFormatter #Tutorial #IOS #NSDate Format Now you can use above characters to format your NSDate in iPhone SDK using the class NSDateFormatter. Below are the steps that shows you how to use NSDateformatter. Step 1: Create an instance of NSDateFormatter. NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; Step 2: Set date format(format in which you want to

iPhone Development:format a NSDate to DDMMYYYY 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 »