Is there no easy way to remove a specific element from an array, if it is equal to a given string? The workarounds are to find the index of the element of the array you wish
Simple loop over Array
var array = ["Apple","Banana","Orange"] for (index,value) in array.enumerated(){ if value == "Banana"{ array.remove(at: index) }