I recently upgraded to Xcode 8 and I am having issues with the Storyboard.
If I open the project and I don\'t have the Storyboard open, it will compile and run just
I tried clean and run the project won't solve this issue.
But Close and reopened the project did.
This is the easiest way for me: add this script to your Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
next if target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
end
This workaround for @IBDesignable can be found here: https://github.com/CocoaPods/CocoaPods/issues/5334