iPhone 5的日历显示但不适用于iPhone 6.在iPhone 6中,布局已更改 这是我的代码:
calendar = [[DSLCalendarView alloc]initWithFrame:CGRectMake(10, 64, 320, 320)];
这是iPhone 6无法正常工作的图像 这个iPhone 5的图像正在运行。
答案 0 :(得分:0)
您需要采用自动布局才能使日历响应。你也有固定的日历宽度。变化
CGRectMake(10, 64, 320, 320)
到
CGRectMake(10,64,self.view.frame.width, self.view.frame.height)