1

我正在尝试创建一个面板,它可以在我的视图上滑动,以显示更多与 ipad 上的应用商店非常相似的内容:

http://0.tqn.com/d/ipad/1/0/g/5/-/-/ipad-app-like.png

是否有这样的课程,还是我必须从头开始创建它?

在此先感谢,本

4

2 回答 2

2

我发现了如何做到这一点,使用:

UIViewController *sampleView = [[UIViewController alloc]init];
[sampleView setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentViewController:sampleView animated:YES completion:NULL];

如果您想要应用商店中的方角,您可以使用:

self.view.layer.cornerRadius = 0;

在您使用的 UIViewController 的 viewWillAppear:(BOOL) 动画方法中。您将需要导入 QuartzCore/QuartzCore.h。

于 2012-10-14T20:22:40.753 回答
0

Ucontainerview 是我会使用的。您可以在“U”下找到此控件。

于 2012-10-13T11:19:39.777 回答