搜索栏消失SWIFT 5

问题描述

我在搜索页面上有一个搜索栏。搜索栏可以正常工作,但我想通过在搜索页面上添加一些标签来简化搜索。我找到了TTGTagCollectionView库。

enter image description here

当我使用TTGTagCollectionView时,搜索栏消失。我不明白为什么 enter image description here

这是我的配置代码

let collectionView = TTGTextTagCollectionView()

  override func viewDidLoad() {
    super.viewDidLoad()
    tagsConfig()
}
 
override func viewDidLayoutSubviews() {
     super.viewDidLayoutSubviews()
     collectionView.frame = CGRect(x: 0,y: (view.frame.height/6),width: view.frame.size.width,height: 100)
 }
 func tagsConfig(){
    collectionView.alignment = .center
    collectionView.delegate = self
    blackView.addSubview(collectionView)
    let tagConfig = TTGTextTagConfig()
    
    tagConfig.backgroundColor = #colorLiteral(red: 0.1333333333,green: 0.1333333333,blue: 0.1333333333,alpha: 1)
    tagConfig.textColor = .white
    tagConfig.borderColor = .white
    tagConfig.borderWidth = 1
    collectionView.backgroundColor = .white
    collectionView.addTags(["x","y","a","b","c","hi","you","test","hello","swift"],with: tagConfig)
    
    
}

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...