Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable storyboard warnings

I avoid getting warnings in my swift code. However when it comes to storyboard requirements it's a bit harder for me.

So for now i just want to disable xcode showing warnings regarding storyboard issues.

I have tried the following without success:

enter image description here

like image 232
Dorad Avatar asked Aug 08 '17 04:08

Dorad


2 Answers

Disable show warnings option

As you have mentioned the option Show warnings under Interface Builder Storyboard Compiler -Options must be kept no, for suppressing warnings related to your storyboard.

What you missing to do

Also after that you can enable and disable this option from right bottom position of warnings tab in Issue navigator.

Example:

enter image description here

That way you can toggle easily.

like image 177
Saranjith Avatar answered Sep 28 '22 14:09

Saranjith


If you just want to hide warnings for storyboard, it looks like you've done it correctly. However, you do need to restart Xcode for the updated preferences to take effect.

If that doesn't work, you can also try this:

Navigate to build settings and go to the Compile Sources phase. Double-click in the Compiler Flags column for the storyboard and enter -w to turn off all warnings for that file.

like image 41
Olivia Brown Avatar answered Sep 28 '22 14:09

Olivia Brown