gpt4 book ai didi

ios - 搜索栏结果在文本旁边添加图像

转载 作者:行者123 更新时间:2023-11-30 14:13:09 24 4
gpt4 key购买 nike

是否可以将图像添加到我的搜索栏结果中?我可以使用以下命令添加文本:

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier(self.identifier) as! UITableViewCell

var text: String?
if tableView == self.searchResultsController?.tableView {
if let results = self.results {
text = self.results!.objectAtIndex(indexPath.row) as? String
}
} else {
// text = MyVariables.users[indexPath.row] as? String
}

cell.textLabel!.text = text

return cell
}

最佳答案

您只需将 UIImage 添加到您的单元格即可。

cell.imageView?.image = UIImage(named: "YourImageNameGoesHere")

UITableViewCellimageView 属性放置在左侧。

[...] If an image is set, it appears on the left side of the cell, before any label. [...]

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewCell_Class/#//apple_ref/occ/instp/UITableViewCell/imageView

希望这有帮助。

关于ios - 搜索栏结果在文本旁边添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31525162/

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