0

私のアプリケーションでは、指定された日付に属するいくつかの情報を含む画面があります。スワイプ効果を出したり、画面を左右にドラッグしたり、日付を変えたりしたいです。

2 つの UIView を作成する必要があると思います (1 つは「明日」の日付、もう 1 つは「昨日」の日付)。

ドラッグを開始したときに、標準のアプリケーションで写真をめくるように、両方のビュー コントロールを動かして、一方が画面から消え、もう一方が表示されるようにするにはどうすればよいですか?

ありがとうございました。

4

2 に答える 2

1

There is a library called iCarousel. It does exactly what you are asking for amd saves a lot of trouble by taking care of all the animation/gestural coding. Use it.

于 2012-09-30T13:21:35.213 に答える
1

Use a UIScrollView. Set up your UIScrollView with paging and then set a content size...

yourScrollView.contentSize = CGSizeMake(320 * numberOfPages, 100);

If you need to know which view the user is on use "scrollViewDidScroll:" to figure out which page they are viewing.

于 2012-09-30T13:23:03.393 に答える