How to delete "URL Types" from Xcode?

IosXcode

Ios Problem Overview


I did a URL Type but I clicked on the "+" icon again and now I can't delete the others. Maybe I'm stupid but I'm unable to delete them :(
(This option is found under project > Targets > app > Info)

enter image description here

Ios Solutions


Solution 1 - Ios

I found a way to delete them: just open the Info.plist, delete the other rows and build/clean the project.

enter image description here

EDIT

You might have to restart XCode to see the changes.

Solution 2 - Ios

  1. Right click on your Info.plist;
  2. "Open As" -> "Source Code";
  3. Search "CFBundleURLTypes", and delete that you want to delete;
  4. Clean and build

I did not have enough reputation to post images.

Solution 3 - Ios

Open info.plist in you favorite text editor and delete the nodes.

Solution 4 - Ios

I always do it by hovering over it and at the top right of the panel for that specific url type, there is a grey square 'X' button.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDaniel IllescasView Question on Stackoverflow
Solution 1 - IosDaniel IllescasView Answer on Stackoverflow
Solution 2 - IosWilliamView Answer on Stackoverflow
Solution 3 - IosesbenrView Answer on Stackoverflow
Solution 4 - IosCameronView Answer on Stackoverflow