skip to Main Content

Ios swift – AutoLayout layoutIfNeeded bounds update time

I have the following code in my custom UIView. This gets called from init(frame:) or init(coder:) initializer: private func setupContentView() { contentView = ContentView(frame: .zero) contentView.translatesAutoresizingMaskIntoConstraints = false addSubview(contentView) contentView.leftAnchor.constraint(equalTo: leftAnchor, constant:thumbWidth).isActive = true contentView.rightAnchor.constraint(equalTo: rightAnchor, constant: -thumbWidth).isActive = true…

VIEW QUESTION

What do these Xcode warnings mean?

I’m getting the following warnings in Xcode when building my app (app runs just fine however): Could not associate debug note to atom l_OBJC_LABEL_PROTOCOL_$_NSObject Could not associate debug note to atom l_OBJC_PROTOCOL_REFERENCE_$_CAAction Could not associate debug note to atom l_OBJC_LABEL_PROTOCOL_$_CAAnimationDelegate…

VIEW QUESTION
Back To Top
Search