我对UICollectionViewCell有问题,对我这样的新手来说真的很难。我需要你的帮助。
我正在编字典。我有一个搜索栏,一个集合视图,一些标签和一个文本视图。但是在显示搜索结果时,我既不能调整集合视图单元格,也不能调整文本视图的大小。
视图控制器:
import UIKit
class sozlukController: UIViewController, UISearchBarDelegate, UICollectionViewDataSource, UICollectionViewDelegate{
@IBOutlet var wordSearchBar: UISearchBar!
@IBOutlet var collection: UICollectionView!
var wordDataList = [String]()
var meaningDataList = [String]()
var dictionaryDataList = [String]()
var yearDataList = [String]()
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
override func viewDidLoad() {
super.viewDidLoad()
}
func searchBarSearchButtonClicked(searchBar: UISearchBar) {
wordDataList = []
meaningDataList = []
dictionaryDataList = []
yearDataList = []
var word = searchBar.text
var parser:dictXMLParser = dictXMLParser()
var searchResults:[dictXMLResponse]=parser.beginParsing(1, searchType: 1, searchWord: word)
for result in searchResults {
wordDataList.append(result.word)
meaningDataList.append(result.meaning)
dictionaryDataList.append(result.dictionary)
yearDataList.append(result.year)
}
searchBar.resignFirstResponder()
searchBar.text=""
collection.reloadData()
}
func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return wordDataList.count
}
func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell:meaningCollectionViewCell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! meaningCollectionViewCell
cell.wordLabel.text = wordDataList[indexPath.row]
cell.meaningText.text = meaningDataList[indexPath.row]
cell.dictionaryLabel.text = dictionaryDataList[indexPath.row]
return cell
}
}
UICollectionViewCell:集合视图单元格:
import UIKit
class meaningCollectionViewCell: UICollectionViewCell , UITextViewDelegate{
@IBOutlet var wordLabel: UILabel!
@IBOutlet var meaningText: UITextView!
@IBOutlet var dictionaryLabel: UILabel!
override func layoutSubviews() {
super.layoutSubviews()
let fixedWidth = meaningText.frame.size.width
let newSize = meaningText.sizeThatFits(CGSize(width: fixedWidth, height: CGFloat.max))
meaningText.frame.size = CGSize(width: max(newSize.width, fixedWidth), height: newSize.height)
}
}
当我第一次在搜索栏上写“gamze”时,由于文本视图的高度,我没有看到整个意思。
Screenshot of first search
令人惊讶的是,当我在第二次搜索中使用同一个词时,文本视图的高度增加了,并且覆盖了下面的标签。但由于UICollectionViewCell的高度,我再次看不到全部含义。
Screenshot of second search
我通过界面生成器设置了可滚动的“false”和自动布局“on”。
有没有一种方法可以显示文本视图中不包含任何标签的含义,并根据内容调整集合视图单元格的大小
我很难找到斯威夫特的消息来源。如果你能帮忙,我将非常感激。
最佳答案
我在github上找到了一个很好的解决方案。诀窍是为单元内容创建XIB文件
https://github.com/honghaoz/Dynamic-Collection-View-Cell-With-Auto-Layout-Demo
关于ios - Swift UICollectionViewCell调整内容大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31720515/