0

I want to make landscape and portrait mode iOS app. I've designed one page with 3 text boxes and 7 buttons. Text boxes and button are resizing (change width) according to IOS screen size in landscape mode but scroller is not showing in landscape mode. So, some buttons are not showing in landscape mode. Please go through landscape Image and portrait Image links.

Landscape Image : http://www.2shared.com/photo/nButg4eb/landscape.html

Portrait Image: http://www.2shared.com/photo/1PR86npE/Portrait.html

I am new in IOS so, i am facing this type of problem. I request all experts to don't close my question because I am really facing this problem and i need to do complete it today.

I am waiting for your valuable answer.

Thanks! Shailesh Prajapati

4

2 に答える 2

0

まず第一に、デフォルトではスクローラーは常に表示されるわけではありません。ビューに入ると表示されますが、その後消えます。さらに、ユーザー エクスペリエンスの観点から、それらを常に表示することは最善ではありません。

したがって、「どこかに何かがある」ことをユーザーに示すには、次の 2 つのことを行うことができます。

ビューがロードされた後、- (void) viewDidLoad次を使用してスクロールで点滅できます。

[scrollView flashScrollIndicators];

また、ボタンの半分が表示され、半分が表示されないように、ボタンを下端近くに配置することもできます。これは、ユーザーへの「ちょっと、そこに何かある!」という指標になります。( http://imgur.com/P9qzUVC )

于 2013-05-10T08:18:43.957 に答える