每日遇到问题记录

27 阅读1分钟

7月23号

  • deinit 必须在本类中 不能extension
  • 闭包里面得用self 不能省略
  • Xcode 字母
  • tabbarItem
// bottom 负是向下icon不变 正icon会变小
childVc.tabBarItem.imageInsets = UIEdgeInsets(top: 0, left: 0, bottom: 5, right: 0)
childVc.tabBarItem.imageInsets = UIEdgeInsets(top: 0, left: 0, bottom: -5, right: 0)
  • 多次执行问题

image.png

  • 单例模式

image.png

7月25号

bindViewModel 别再扩展中重写