Search code examples
iosxcodeios7ios8autolayout

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.


Solution

  • 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