I have an array and want to remove one (or more) element based on a specific value.
// Initialize the Array var a = ["one", "two", "three"] // Remove/filter item with value 'two' a = a.filter { $0 != "two" } print(a)
* Please let us know about anything: issues/feature request/suggestions......And we'll do our best to get back to you asap! :)
Or just post your issue on iSwift's Official Issue Tracker