iPhone 或 Xcode 中的分页是如何完成的?

发布于 2024-12-06 20:21:53 字数 194 浏览 1 评论 0原文

我想知道如何使用“SWIPE”完成分页。

有一个名为“帐户详细信息”的页面,此“帐户详细信息”页面应该在该帐户详细信息中包含大约 4 个页面,另外还有 4 个帐户。

这些已获取有关银行帐户详细信息的信息。那么 PAGINATION 是如何完成的呢?对于这 4 个页面,将“帐户详细信息”保留为主页。

请帮我....!!!!!!

I would like to know how PAGINATION is done using a "SWIPE".

Got a page with the name "Account Details" and this "Account Details" page should have around 4 PAGEs within that Account Details of 4 more accounts.

These has got the information about the BANKING account details. So how is the PAGINATION done. for these 4 PAGEs keeping "Account Details" as the main page.

Please help me....!!!!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

戏剧牡丹亭 2024-12-13 20:21:53

如果我正确理解你想要什么,你应该使用 UIScrollView
将其添加到您的 viewDidLoad 中:

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
scrollView.contentSize = CGSizeMake(4 * self.view.bounds.width, 1); // 1 = hack to disable possible verticalBouncing
scrollView.pagingEnabled = YES;
/* add your pages as subviews here */
[self.view addSubview:scrollView];
[scrollView release];

If i correctly understand what you want, you should use UIScrollView!
Add this to your viewDidLoad:

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds];
scrollView.contentSize = CGSizeMake(4 * self.view.bounds.width, 1); // 1 = hack to disable possible verticalBouncing
scrollView.pagingEnabled = YES;
/* add your pages as subviews here */
[self.view addSubview:scrollView];
[scrollView release];
辞慾 2024-12-13 20:21:53

您应该使用 UIPageControl< /代码>。非常简单。

You should be using the UIPageControl. Very straightforward.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文