I think the problem is that you have a lot of restrictions that use NSLayoutAttributeFirstBaseline , and when you click on the warning, Xcode indicates an invalid restriction.
To define a constraint search in Xcode using "firstBaseline". Change all restrictions that are used by NSLayoutAttributeFirstBaseline .

Note. You may need to customize your views. In my case, NSLayoutAttributeBaseline worked well.
NSLayoutAttributeFirstBaseline
Source object. For objects with more than one line of text, this is the baseline for the top line of text. Source object. For objects with more than one line of text, this is the baseline for the top line of text. Available in iOS 8.0 and later.
NSLayoutAttributeBaseline
Source object. Source object. Available in iOS 6.0 and later.
source share