顶部自定义标签栏显示今天和1周的日期

时间:2018-01-17 09:59:21

标签: ios objective-c tabs

iOS Objective C中的初学者,我需要一些帮助来创建自定义选项卡,如图所示。

Custom Tab

自定义标签今天会显示加6天的日期。然后,当用户点击日期时,它将调用uRL。如果可能的话,我需要一些指示。非常感谢所有帮助,非常感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用某些第三方细分控件。对于Objective-C可以是thisthis,那么您将从当前日期获得6个下一个日期,例如此代码将当前日期添加1天等等:

NSDateComponents *dayComponent = [[NSDateComponents alloc] init];
dayComponent.day = 1;

NSCalendar *theCalendar = [NSCalendar currentCalendar];
NSDate *nextDate = [theCalendar dateByAddingComponents:dayComponent toDate:[NSDate date] options:0];

NSLog(@"nextDate: %@ ...", nextDate);