您的第二个 iOS 应用程序教程:他们想要多少个部分?

发布于 2025-01-07 20:03:59 字数 411 浏览 0 评论 0原文

在您的第二个 iOS 应用程序中,有一部分内容如下:

完成表格中单元格的布局后,详细场景应如下所示:

detail_scene_design

但是,我的每个部分的正上方都有第 1 部分、第 2 部分、第 3 部分。我感觉他们想要一个包含三个单元的部分。

你能说出是哪一个吗?

In Your Second iOS app, there is a portion that says the following:

After you finish laying out the cells in the table, the detail scene should look similar to this:

detail_scene_design

However, mine has Section-1, Section-2, Section-3 right above each section. I get the feeling that they want 1 section with three cells.

Can you tell which?

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

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

发布评论

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

评论(4

糖粟与秋泊 2025-01-14 20:03:59
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return 3;
}

这应该是您的代码,有 3 行,只有 1 个部分,如图像所示

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

    return 3;
}

This should be your code to have 3 rows and only 1 section like that of image

甜柠檬 2025-01-14 20:03:59

您错误地增加了节数,而不是增加了行数。这是你应该做的。

编辑添加

您可以通过突出显示控制器场景中的表视图部分并编辑右侧面板中的行数来实现此目的。

我的图片使这一点更清楚:

在此处输入图像描述

You incremented the number of sections by mistake instead of incrementing the number of rows. Which you should have done.

Edited to add

You get to this by highlighting the Table View Section in the controller scene and editing the number of rows in the right hand panel.

I picture makes this clearer:

enter image description here

潜移默化 2025-01-14 20:03:59

是的,根据图像,它的 1 个部分有 3 行。在 numberOfSections 方法中返回 1,在 numberOfRowsInSection 方法中返回 3。

Yes, according to the image its 1 section with 3 rows. In numberOfSections method return 1 and in numberOfRowsInSection method return 3.

笑咖 2025-01-14 20:03:59

他们正在寻找一个包含三个单元的部分。

They are looking for one section with three cells.

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