uiscrollviewのサブビューとしてuiimageviewsがあります。uiviewcontrollerにscrollviewcontentsizeとoffsetのサイズを、ここで行ったのと同じように変更しました:http: //github.com/andreyvit/ScrollingMadness/tree/master。唯一の違いは、画像ビューが画面全体を占めることを望まないが、比例して引き伸ばそうとすることです。
scrollView.contentMode = UIViewContentModeScaleAspectFit;
scrollView.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
view.contentMode = UIViewContentModeScaleAspectFit;
view.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
およびその他のいくつかの変更。これで、画像は比例して拡大し、ナビゲーションバーがなくても問題なく表示されますが、ScrollingMadnessControllerを押すと、ナビゲーションバーが作成され、垂直スクロールが発生します。垂直スクロールを無効にすることもできますか?