首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

无法将正确的数据从嵌入在UITableView中的UICollectionView发送到ViewController Swift3

在Swift3中,将正确的数据从嵌入在UITableView中的UICollectionView发送到ViewController可以通过以下步骤实现:

  1. 首先,确保你的UITableView和UICollectionView已经正确地设置并显示在ViewController上。
  2. 在你的ViewController类中,创建一个变量来存储你想要发送的数据。例如,你可以创建一个名为"selectedData"的变量。
代码语言:swift
复制
var selectedData: Any?
  1. 在你的UITableViewDelegate和UICollectionViewDelegate方法中,当用户选择某个单元格时,将选中的数据赋值给"selectedData"变量。
代码语言:swift
复制
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    selectedData = yourDataArray[indexPath.row]
}

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
    selectedData = yourDataArray[indexPath.item]
}
  1. 在你的ViewController中,你可以使用"selectedData"变量来执行任何你想要的操作,例如显示在另一个视图控制器中或者进行进一步的处理。
代码语言:swift
复制
func showSelectedData() {
    if let data = selectedData {
        // 在这里执行你想要的操作,例如显示在另一个视图控制器中
        let detailViewController = DetailViewController()
        detailViewController.data = data
        navigationController?.pushViewController(detailViewController, animated: true)
    }
}

这样,你就可以将正确的数据从嵌入在UITableView中的UICollectionView发送到ViewController了。

对于Swift3中的UITableView和UICollectionView的使用,你可以参考腾讯云的相关文档和示例代码:

相关搜索:无法在我的UICollectionView的cellForItemAtIndexPath中获取正确的类型将“正确”的数据从UITableViewController中的选定单元格传递到ViewController以正确的格式将数据从react发送到节点将数据从TableView (以模态显示)发送到文本字段内的ViewController无法将数据从一个tableViewController传递到嵌入在ViewController中的另一个TableViewController在swift3中搜索从json检索到的数据如何将一个viewController中的图像数据发送到另一个viewController中?Swift UITableView / UICollectionVIew将数据传递到cellForRowAt中的单元格时返回空如何将变量传递给嵌入在导航控制器中的ViewController?如何使用Swift3从后台数据库下载图像后在新的ViewController容器ImageView中显示它如何从嵌入在选项卡栏控制器中的UIButton推送ViewController如何正确地将数据从表单发送到我的URL?如何将数据从模型数组中的数组填充到UITableView?我无法将表单中的数据发送到typescript angular我无法将邮件中的附件从邮箱发送到邮箱如何调试Telegraf无法将数据从MQTT发送到influxdb的原因UICollectionView/UITableView委托/数据源函数在Clean Swift中应该放在哪里[Bob叔叔的Clean Architecture]无法在JavaFX中正确显示tableView中的数据在viewcontroller中更新tableView之前,是否等待单独的数据类从firestore中获取数据?我无法将输入字段中的数据发送到MySQL数据库
相关搜索:
页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券