我在视图控制器中添加了一个名为 LayoutView 的子视图。LayoutView 然后通过给定的代码添加了一个名为 SectionView 的子视图:
MSSectionView *sec1;
sec1 = [[MSSectionView alloc]initWithFrame:CGRectMake(72, 95,172,145)];
sec1.tag = 1;
sec1.delegate = self;
//sec1.backgroundColor = [UIColor clearColor];
//sec1.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin;
[self addSubview:sec1];
在我的普通 iPhone 中,它将显示为:
但在我的视网膜显示器中,它将显示为:
我试过自动调整面具。但得到了相同的结果。如何固定剖面视图的位置?