設定ビューを表示したかったので、pageCurlモーダルスタイルを使用できると思いました。私はUIViewController
私が提示しているものを持っています:
Settings *settings = [[[Settings alloc] initWithStyle:UITableViewStyleGrouped] autorelease];
settings.view.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];
settings.modalTransitionStyle = UIModalTransitionStylePartialCurl;
settings.modalPresentationStyle = UIModalPresentationFullScreen;
[self presentModalViewController:settings animated:YES];
UITableViewController
ページがカールすると、以下を明らかにするために、 cells subviews
(ラベルとアクセサリビュー)が所定の位置にアニメーション化されているように見えますが、これは恐ろしいように見えます。
奇妙なことに、アニメーションはセクションの一番上のセルには決して発生しません。これは他の人には起こらないmodalTransitionStyle's
ので、なぜこれが起こっているのだろうかと思います。これを止める方法がわからないので、本当にイライラします。
アイデア?