这个
线程 9 队列:fmdb。
负责调用许多 malloc。 该线程是做什么的以及是谁创建的?
UPD:我的猜测是 100% 折扣。而且这个问题也与 rx 无关。我很尴尬,以至于从标题中编辑了 rx。
在我的特殊情况下,这是一个无限循环 在 viewWillLayoutSubviews() 中不断重新布局 在触摸帧之前我必须检查帧是否已更改。 显然 ios15,16 自己做到了这一点。
if let bounds = view.superview?.bounds {
if backgroundImageView.frame != bounds {
backgroundImageView.frame = bounds
allowResize = true
}
if collectionView.frame != bounds {
collectionView.frame = bounds
allowResize = true
}
}
if allowResize {
locationButton.sizeToFit()
}