将图像添加到表格视图中的单元格
我正在创建一个应用程序,我想在其中显示一个表格视图,并且表格视图的每个单元格将显示 5 个不同的图像。让我详细说一下。我有 10 个图像,我想在表格视图中显示它们。说 4表格视图第一行中的图像,然后下一行中的下 4 个图像,然后下一行中的剩余两个图像。作为新手,我无法启动。请帮助。任何帮助将不胜感激。
谢谢, 克里斯蒂
I am creating an app in which i want to display a table view and each cell of table view will be displaying 5 different images.Let me say in detail.I have 10 images and i want to show them in a table view .say 4 images in first row of table view then next 4 in next row ,then the remaining two in next row.Being a newbie i am unable to get a startup.Please help.Any help will be appreciated.
Thanks,
Christy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为对于启动你可以在这里
如何以编程方式显示 UITableView?
好吧,如果您知道如何加载 uitableview,那么我认为您可以开始处理复杂的部分。
您需要在 cellForRow 方法中添加这行代码
您需要根据您的要求设置框架大小和图像名称
编辑:
@Christy 您可以有一个可以使表视图滚动的按钮。但iphone用户习惯通过查看表格右侧的滚动条来查看表格是否还有数据。
但是,如果您想要一个滚动表格的按钮,那么这里的代码是
在此块中的 tableView 的 cellForRow 方法中
else if(indexPath.row == 2){}
添加一个带有像这样的向下箭头和选择器方法中
I think for startup you can go over here
How to display the UITableView programmatically?
Ok if you know how to load a uitableview than I think you can get started with complex part.
You need to add this line of code in your cellForRow method
You need to set the frame size and image name according to your requirement
Edit:
@Christy you can have a button that can make a table view scroll. But iphone users are used to see the scroll bar on the right of the table to see if the table has any more data or not.
But if you want to have a Button that scrolls the table than here is the code
In your cellForRow method of tableView in this block
else if(indexPath.row == 2){}
add a UIButton with a down arrow like thisand in the selector method
}
}