Questions tagged [nsmutablearray]

In Cocoa and Cocoa Touch, an NSMutableArray is a versatile array object that can be modified. This feature is accessible in OS X v10.0 and newer versions.

Swift - Transforming an NSMutableArray into an array of MKAnotationViews

Currently, I have an array of BarAnnotation objects like this: var bars = [BarAnnotation(latitude: 42.022352, longitude: -93.650413, name: "Micky's Irish Pub", deal: "$2 Drinks 9PM-1AM"), BarAnnotation(latitude: 42.021948, longitude: -93.650348, name ...