Xcode 7.1.1, 7.2 Noticed when using openURL in an app (phone call). Added ids to all of my constraints regarding this VC and none show up as the ones with warnings.
func makeCall(theNumber: String) {
if theNumber != "" {
if let url = NSURL(string: "tel://" + theNumber) {
UIApplication.sharedApplication().openURL(url)
}
}
}
Debug area shows:
Probably at least one of the constraints in the following list is one you don't want.
Try this:
(1) look at each constraint and try to figure out which you don't expect;
(2) find the code that added the unwanted constraint or constraints and fix it.
(
"<NSLayoutConstraint:0x15ea3670 V:|-(20)-[UIInputSetContainerView:0x15e87f90] (Names: '|':UITextEffectsWindow:0x15df11f0 )>",
"<NSLayoutConstraint:0x15d986a0 'UIInputWindowController-top' V:|-(0)-[UIInputSetContainerView:0x15e87f90] (Names: '|':UITextEffectsWindow:0x15df11f0 )>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x15ea3670 V:|-(20)-[UIInputSetContainerView:0x15e87f90] (Names: '|':UITextEffectsWindow:0x15df11f0 )>