您的第二个 iOS 应用程序教程:他们想要多少个部分?
在您的第二个 iOS 应用程序中,有一部分内容如下:
完成表格中单元格的布局后,详细场景应如下所示:
但是,我的每个部分的正上方都有第 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这应该是您的代码,有 3 行,只有 1 个部分,如图像所示
This should be your code to have 3 rows and only 1 section like that of image
您错误地增加了节数,而不是增加了行数。这是你应该做的。
编辑添加
您可以通过突出显示控制器场景中的表视图部分并编辑右侧面板中的行数来实现此目的。
我的图片使这一点更清楚:
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:
是的,根据图像,它的 1 个部分有 3 行。在
numberOfSections
方法中返回 1,在numberOfRowsInSection
方法中返回 3。Yes, according to the image its 1 section with 3 rows. In
numberOfSections
method return 1 and innumberOfRowsInSection
method return 3.他们正在寻找一个包含三个单元的部分。
They are looking for one section with three cells.