我正在尝试创建一个面板,它可以在我的视图上滑动,以显示更多与 ipad 上的应用商店非常相似的内容:
是否有这样的课程,还是我必须从头开始创建它?
在此先感谢,本
我发现了如何做到这一点,使用:
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。
Ucontainerview 是我会使用的。您可以在“U”下找到此控件。