What are gray constraints in Xcode view hierarchy debug view?

前端 未结 3 1901
轮回少年
轮回少年 2021-02-12 22:52

I know what the solid ones are: I created them myself. What about the gray ones? Implicit, maybe via size-to-fit? The gray height conflicts with the solid height. Where do the g

3条回答
  •  北荒
    北荒 (楼主)
    2021-02-12 23:50

    For me the gray constraints appeared because I was modifying the UIView's size outside the main thread.

    Make sure you don't make the same mistake:

    DispatchQueue.main.async {
       //modify your view here
    }
    

提交回复
热议问题