IB Designables: Failed to update auto layout status: Failed to load designables from path (null)

It is a known issue in CocoaPods.
It has been fixed in version 0.36.1.
Just update your CocoaPods and then add specific line of code to your pod file:
use_frameworks! after platform :ios, ‘7.0’

So your file will look like this:

platform :ios, '7.0'

use_frameworks!

/// here will be dependencies etc. ///

updated:

Full list of steps to get rid of the problem once and for all:

  • Close project;
  • Open Terminal App;
  • Update CocoaPods itself to ver. 0.36.1 or later;
  • Navigate to your project folder in Terminal;
  • Type: pod update;
  • Open your project in xCode;
  • Clean project;
  • Build project again.

Leave a Comment