如何在 iOS 中显示自定义嵌套列表
Posted
技术标签:
【中文标题】如何在 iOS 中显示自定义嵌套列表【英文标题】:How to show custom nested lists in iOS 【发布时间】:2017-09-13 08:11:36 【问题描述】:我想在 ios 中显示一个列表,它本身将包含一个列表。 例如,我想创建一个每日任务列表,其中日期和任务是动态的。所以外部列表是 DAY LIST,内部列表是 TASK LIST。还想处理对 TASKS 的点击。 如何在 iOS 中实现这一点,尝试使用 Table Views 但无法实现,因为我想显示嵌套列表。简而言之,我想在 iOS 中显示列表列表。
【问题讨论】:
你可以使用tableView里面的tableView或者collectionview里面的tableView。如果您可以分享确切需要的图像,我可以为您提供更多帮助。 你能分享在tableview中使用tableview的任何参考吗 目标 C 还是 swift? 您可以使用 TableView,其中部分是 Daylist,而行(单元格)是 Tasklist @Ishika- 在 Swift 中 【参考方案1】: //
// ViewController.swift
// Ishika
//
// Created by IShika on 12/06/17.
// Copyright © 2017 Ishika. All rights reserved.
//
import UIKit
class ViewController: UIViewController
@IBOutlet weak var viewForHeader: UIView!
@IBOutlet weak var tblViewForHome: UITableView!
override func viewDidLoad()
super.viewDidLoad()
// Do any additional setup after loading the view.
extension ViewController: UITableViewDataSource,UITableViewDelegate
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
return 1
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
var cell = UITableViewCell()
cell = tblViewForHome.dequeueReusableCell(withIdentifier: "FeaturedLocationsCell") as! FeaturedLocationCellClass
return cell
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat
//It should be greater than your collectionViewCell's size
return 300.0
//MARK:- UITABLEVIEWCELL CLASS
class FeaturedLocationCellClass : UITableViewCell,UICollectionViewDataSource,UICollectionViewDelegate,UICollectionViewDelegateFlowLayout
@IBOutlet weak var colVForFeaturedLocations: UICollectionView!
override func awakeFromNib()
super.awakeFromNib()
colVForFeaturedLocations.dataSource = self
colVForFeaturedLocations.delegate = self
func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
return 2
func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
let cell = colVForFeaturedLocations.dequeueReusableCell(withReuseIdentifier: "myFeautredLocationColVCell", for: indexPath) as! MyFeaturedLocationCollCellClass
return cell
func collectionView(_ collectionView: UICollectionView, layout collectionViewLayout: UICollectionViewLayout, sizeForItemAt indexPath: IndexPath) -> CGSize
return CGSize(width: screenWidth/2 + 50 , height: screenWidth/2 + 50)
//MARK:- UICOLLECTIONVIEWCELL CLASS
class MyFeaturedLocationCollCellClass: UICollectionViewCell
//Can draw outlets for your collectionView elements
override func awakeFromNib()
super.awakeFromNib()
【讨论】:
@Ishika-谢谢!表视图中的集合视图有效,我也参考了这个CollectionView in TableView 这是我的荣幸 :)以上是关于如何在 iOS 中显示自定义嵌套列表的主要内容,如果未能解决你的问题,请参考以下文章
iOS 自定义 TableViewCell 行高(嵌套 FlowLayout)
如何在一个 tableView 中使用两个不同的自定义单元格?使用情节提要,iOS 7