Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Attribute Unavailable: First baseline layout attribute on iOS versions prior to 8.0

I'm getting the following warning in XCode 6.1.

Attribute Unavailable: First baseline layout attribute on iOS versions prior to 8.0

I think, this is also causing my iOS 7.x builds to crash.

like image 662
djburdick Avatar asked Dec 18 '14 23:12

djburdick


2 Answers

Found the issue. This new constraint was added to iOS 8.0 and isn't supported with previous versions.

To get rid of this warning and allow iOS 7 builds to work you need to:
1. Click on the warning in the side bar (this should highlight the offending constraint)
2. Change that constraint to something other than "First Baseline". "Center Y" worked well for me. You'll have to play with the options and can see the changes live to see which alternative works for you.

iOS 7 now builds again and warning is gone.

enter image description here

like image 121
djburdick Avatar answered Oct 20 '22 11:10

djburdick


We just ran into this exact same problem, but in our case, it didn't crash Xcode; it just drew the the view wildly out of place when run on an iOS 7 simulator. We fixed it by changing the constraint's item to plain ol' baseline.

like image 2
NRitH Avatar answered Oct 20 '22 09:10

NRitH