NSDateFormatter

How to calculate number of days between current date and selected weekday in IOS SDK

Mostly in IOS app development we need alarm functionality in our apps. As we all know that we can fire alarm in our IOS app as UILocalNotification. But to fire alarm or UILocalNotification we need  seconds or time to be passed when scheduling our UILocalNotification. If you did not know much about UILocalNotification, then you […]

How to calculate number of days between current date and selected weekday in IOS 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 »