所以我正试图在UIScrollView上垂直打印一个月内的所有日子。这是我正在努力完成的Photoshop中的模拟:
NSCalendar *cal = [NSCalendar currentCalendar];
NSRange nums = [cal rangeOfUnit:NSDayCalendarUnit inUnit:NSMonthCalendarUnit forDate:[NSDate date]];
NSUInteger numberOfDaysInMonth = nums.length;
NSString *string = [NSString stringWithFormat:@"%d", numberOfDaysInMonth];
现在这是我到目前为止的代码,它找到它的月份,然后计算当月的天数。所以我的问题是我真的迷失了如何像我在设计中那样打印它们。谢谢!
答案 0 :(得分:0)
我想通过Paulw11,他建议我使用UITableview。我无法相信我没有想到这一点。