Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to show date for today (Hebrew date) with label (not calendar).

How I do it with NSDate?

Thanks!

share|improve this question

2 Answers

check out these two links... May be it will helpful for you

share|improve this answer

Use this to format the date:

NSLocale *hebrew = [[NSLocale alloc] initWithLocaleIdentifier:@"he_IL"];
NSDateFormatter *format = [[NSDateFormatter alloc] init];
format.locale = hebrew;
[format setDateFormat:@"MMM dd, yyyy HH:mm"];

NSDate *now = [NSDate date];
NSString *today = [format stringFromDate:now];
UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(30, 40, 240, 30)];
lbl.text = today;
NSLog(@"today: %@", today);
share|improve this answer
But how I show you (reletionship with label? – dsadasd Dec 14 '12 at 11:41
what relationship? i didn't get u? – laxonline Dec 14 '12 at 11:45
I need the label show me the date for today (hebrew date) – dsadasd Dec 14 '12 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.