gpt4 book ai didi

iOS水平和垂直滚动UITableView

转载 作者:行者123 更新时间:2023-11-29 12:43:53 26 4
gpt4 key购买 nike

我是 iOS 的新手,正在探索它的各个方面。我希望创建一个 UITableView,其中 TableView 的每个单元格都有一个水平滚动 TableView 。我是 iOS 新手。

我从 UITableViewCell 继承的自定义类将包含一个 UITableView 属性。下一步是什么?

我已将一个 TableView 拖到我的 Table View 的 Prototype Cell 中。我的 TableView 单元格中的这个表格 View 需要水平滚动。我在继承自 UITableViewCell 的类中为 TableView 创建了一个 IBOutlet。我怎么知道这个类将是这个内 TableView 的 UITableViewDelegate,UITableViewDataSource

enter image description here

我走的路对吗?我正在使用 Storyboard和 iOS 7

最佳答案

您只需指定 UITableViewCell 子类符合委托(delegate)/数据源协议(protocol),就像在 View Controller 中一样。从那里,您将表的委托(delegate)/数据源属性链接到单元格。

但是,我建议您使用 UICollectionView类以满足您的水平划桨需求,这将使整个过程不那么痛苦。我的第一点也适用于使用 UICollectionView。

例如:

@interface MyCell : UITableViewCell <UICollectionViewDelegate, UICollectionViewDatasource>
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
@end

关于iOS水平和垂直滚动UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24156181/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com