摘要:
IOS Object-c NSDate总结日期操作//NSDate //1, 创建NSDate对象 NSDate *nowDate = [NSDate date]; NSLog(@"%@",nowDate); //2, 创建明天现在的时间 NSDate *tomorrow = [NSDa... 阅读全文
摘要:
#import //定义⼀一个block,返回值为BOOL,有两个NSString参数。实现:判 //断字符串是否相等。 BOOL (^compareString)(NSString *, NSString *) = ^(NSString *str1, NSString *str2){ ... 阅读全文