布局不适用于iPhone 6

时间:2015-11-30 07:04:06

标签: ios objective-c iphone ios-autolayout

iPhone 5的日历显示但不适用于iPhone 6.在iPhone 6中,布局已更改 这是我的代码:

 calendar = [[DSLCalendarView alloc]initWithFrame:CGRectMake(10, 64, 320, 320)];

这是iPhone 6无法正常工作的图像 这个iPhone 5的图像正在运行。

enter image description here

1 个答案:

答案 0 :(得分:0)

您需要采用自动布局才能使日历响应。你也有固定的日历宽度。变化

CGRectMake(10, 64, 320, 320)

CGRectMake(10,64,self.view.frame.width, self.view.frame.height)