0

IN my app i have label at middle position and its left & right position previous and next button occur. label shows current date. & whenever i clicked on next button its shows date incremented by one and vice-versa in case of previous button. how to achieve this......

sugita
  • 23
  • 1
  • 3
  • Date incremented by one what?... (day, year, month, millisecond...) – Vladimir Jan 20 '11 at 10:04
  • possible duplicate of [get NSDate today, yesterday, this Week, last Week, this Month, last Month... variables](http://stackoverflow.com/questions/1889164/get-nsdate-today-yesterday-this-week-last-week-this-month-last-month-vari) – jscs Sep 28 '11 at 06:19
  • Check this [Link](http://stackoverflow.com/questions/1889164/get-nsdate-today-yesterday-this-week-last-week-this-month-last-month-vari). – Yama Jan 20 '11 at 10:11

1 Answers1

0

@sugita on the IBAction method of your previous button decrease the incremented date by 1 (i.e -1 for the incremented date),on every click of your previous button decrease the incremented date which u are giving to the label.It is like wise u r increasing it

Hope u understand!

Sudhanshu
  • 3,950
  • 1
  • 19
  • 18