你怎么希望某人用objective-c祝你生日快乐?

时间:2016-06-28 03:53:33

标签: objective-c

我希望我的女朋友生日快乐,并认为用编程语言做这件事很可爱。她是程序员并使用objective-c。救命? :d

1 个答案:

答案 0 :(得分:1)

可怕的问题,但你是一个很好的b / f 所以,假设她的生日是明天(6月28日):

NSDateComponents *components = [[NSCalendar currentCalendar] components:NSCalendarUnitDay | NSCalendarUnitMonth fromDate:[NSDate date]];
NSInteger day = [components day];
NSInteger month = [components month];

if (day == 28 && month == 6){ 
    NSLog(@"Happy birthday!");
}