Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
別のuiviewB内にuiviewAがあります。Aには、uiviewにuitableview、uitextfield、ボタンなどの他の多くのuiオブジェクトが含まれています。ズームインまたはズームアウトするためのボタンがあります。ユーザーが私のuiviewAのズームインをクリックするとuiviewBがカバーされ、ズームアウトをクリックするとiPadの前の位置になります。
私が理解できることから、UIViewAutoresizingMasksを見る必要があるように思えます。これらは、サブビューがスーパービューに関連してどのようにスケーリングされるかを定義します。例えば
[mySubview setAutoresizingMask:UIViewAutoresizingMaskWidth];
mySubviewのスーパービューの幅を変更すると、mySubviewsの幅も同じ係数で変更されます。