使用单元格内的UITextField水平滚动UICollectionView?

时间:2018-04-11 19:13:52

标签: ios swift uicollectionview

所以我UICollectionViewCells内部包含textField但是当我尝试用collectionView上的textField滚动collectionView时,delaysContentTouches没有&# 39;滚动。我已经尝试将collectionView设置为false但无效。

这是{I}我试图滚动的textField,但由于textField而不能让我:

UITextField inside a UICollectionViewCell

编辑:

我可以在collectionView和单元格之外水平滚动,但是我试图通过触摸并滚动textField来滚动public class EventWrapper { @SerializedName("events") @Expose private List<? extends Event> events = null; public List<? extends Event> getEvents() { return events; } public void setEvents(List<? extends Event> events) { this.events = events; } public EventWrapper(List<? extends Event> events) { this.events = events; } } (我有理由解雇键盘如果滚动,万一有人发现这个坏主意。)

1 个答案:

答案 0 :(得分:0)

试试这个

let layout = UICollectionViewFlowLayout() layout.scrollDirection = .horizontal self.collectionView.collectionViewLayout = layout