I want to append an item to an existing Array.
// Initialize the Array var a = [1,2,3] // Append another item - solution A a += [4] // Append another item - solution B a.append(5) 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