我的UILabel
很少,而我的屏幕宽度和高度都变成了UICollectionViewFlowLayout
。我的UI标签的内容更大,我想滚动查看所有内容。我正在尝试为我的小型本地门户网站制作NewsApp。我需要自动调整大小取决于文本的长度。
下面的示例代码:-
override func viewDidLoad() {
super.viewDidLoad()
collectionView.register(NewsD.self, forCellWithReuseIdentifier: "newsDetailsId")
collectionView.translatesAutoresizingMaskIntoConstraints = true
collectionView.showsVerticalScrollIndicator = false
collectionView.backgroundColor = .white
collectionView.alwaysBounceVertical = true
//let height = collectionView.collectionViewLayout.collectionViewContentSize.height
let flowLayout = collectionView.collectionViewLayout as! UICollectionViewFlowLayout
flowLayout.itemSize = CGSize(width: self.collectionView.frame.width, height: self.collectionView.frame.height)//show my cells
}
请帮助我?