How to suppress specific compiler warnings in Xcode11 - ios

I am using third party framework in my swift project with Xcode11, which is having many warnings for
Non-portable path to file "HeaderFile.h"; Specified path differs in case from file name on disk Headerfile.h
Is there any way to suppress these specific warnings? or any way to silent framework warnings?
I went through with many threads but did't find the expected solution.
Any inputs would be a great help here, Thank you!!

Add -Wno-nonportable-include-path to your compiler options.
In Xcode, click the “Show the Project navigator” icon at the top left (leftmost icon under the red-yellow-green window buttons) or select View > Navigators > Show Project Navigator.
The select the project (topmost item in the tree shown in the sidebar once the project navigator view is shown). To the right, click on Build Settings. Below that, and to the left, in Basic / Customized / All, click All.
Scroll to “Apple Clang - Custom Compiler Flags”. Click the blank field to the right of “Other Warning Flags”. A dialog with fields to enter options will pop up. Click “+” at the bottom left. In the empty field that becomes editable, enter “-Wno-nonportable-include-path”.

Related

Removing Project Symbol Search button

Is it possible to remove or disable the Project Symbol Search button from the Dephi (10.2) editor. It is the magnifying glass on the far right in the image below.
It is a nuisance to me because I keep pressing it instead of the dropdown arrow on the Methods combo box next to it (because my hand co-ordination is poor) and it freezes the IDE for 20-30 seconds.
In Tools > Options > Editor Options > Display there is only an option to turn off the hole toolbar ("navigation toolbar").
The toolbar is not even mentioned in the docs for the options dialog!
But at least you can find information about it here and here in the docs.

xcode xcworkspace open without tools or Navigator?

I just oen the xcode "xcworkspace" it's open directly to the small screen without any tools or bars how can i back to the normal workspace ?
Try below option may be it will work
Right-click on the toolbar area beside your project title, i think you can see 'Show Toolbar' option & click it.
On the far right of this toolbar, click the leftmost 'Show Navigator' button in the group of three 'View' icons.
This should present your project in the navigator on the left for you to access.

Xcode files disappear from project navigator

I'm running into a strange Xcode issue where files that match my search are disappearing from the project navigator. With only 1 tab open in Xcode, I type a few letters into the search box in the project navigator. The list of files immediately filters to match my search term.
I then do nothing, and wait for 5 seconds, and Xcode refreshes and the files disappear and it displays "No Filter Results". If I add or remove a letter from the search box, the files come back for a few seconds, but then they disappear again. Is this some Xcode glitch? Or do I have to change something to get my files to stop disappearing when I do a search. I am on Xcode 7.3.1.
None of my other navigator tabs have any text in the search boxes. I also do not have the 'source control' or 'recent files' filters selected, as shown here:
I also have XCode 7.3.1 but cannot reproduce the behavior you are seeing. Please check following - there is filter box at the bottom, make sure that nothing there. If that does not resolve the problem check your settings in Xcode->Preferences->general->Find Navigator Details. Also try reinstalling xcode.

How to bring back the full Xcode 4 interface?

This is crazy! I opened two separate editor windows by double-clicking in the files navigator. Then I closed Xcode.
Now, every time I open my project Xcode is completely gone. All I get are these two separate editor windows. I tried everything to get Xcode back, but when I open this particular project there is no Xcode interface - just the two lightweight editor windows.
Did anyone else encounter this problem? Is there anything else I can do, other than creating a blank new project from scratch and copying everything over?
There's no such thing as a "lightweight editor window" in Xcode 4. What you're seeing is a window that has the toolbar, tab bar, navigator pane, and utilities pane all hidden. You can show them again from the View menu.
To bring back everything:
View->Show Toolbar
View->Show Tab Bar
View->Navigators->Show Navigator
View->Utilities->Show Utilities
The last two can also be done from buttons on the toolbar.
Depending on what you expect the window to look like, you may also need to use View->Debug Area->Show Debug Area.
Select one of these editor windows, and then go to View -> Show toolbar. There is the rest of your interface.
Try going to the menu and selecting Navigate and "Reveal in Project navigator"
With the project open, select View > Show Toolbar.

Can I set the Utilities panel in Xcode 4 to open by default on all new projects?

I'm currently learning iOS development from scratch, and as such, I'm making lots of new projects. Every time I do so, I have to resize the Xcode window (I don't want it maximised, but I don't want it as tiny as it makes it), and I also have to pop open the Utilies and Debug areas, as well as dragging the Objects library up to make it larger. Can I set some defaults in Xcode to do this for every new project?
No, Xcode doesn't include all these options, but you can get part way there. You can setup a behavior that shows or hides the parts of an Xcode window such as the utilities, the toolbar, the debugger, etc. Then it's one menu selection or key command to show the parts, and a little dragging to resize things.
To make a behavior select Behaviors>Edit Behaviors... from the "Xcode" menu in Xcode. Create a new behavior by clicking the "+" symbol near the lower left corner. Give your behavior a name and optionally a key command. Set the options in the behavior to show or hide the parts you want shown or hidden, and maybe even take some of the other available actions.
To run the behavior just select it from the "Behaviors" submenu of the "Xcode" menu, or press the appropriate key command combination.

Resources