I want to addObject
of NSMutableArray
into NSMutableArray
so how can I achieve this in swift.
and also retrieve it so please help me because right now I'm learning swift.
Indirectly say that I want 2D array means NSMutableArray
of NSMutableArray
.
//The below 2 lines iterative!
var dict:NSMutableDictionary? = NSMutableDictionary();
linePointsArray!.addObject(dict!);
// and below 2 line is execute after complete the above iteration
arrLine!.addObject(linePointsArray!);
linePointArray!.removeAllObject();
//after that the above whole process is done iterative.
The NSMutableArray class declares the programmatic interface to objects that manage a modifiable array of objects. This class adds insertion and deletion operations to the basic array-handling behavior inherited from NSArray . NSMutableArray is “toll-free bridged” with its Core Foundation counterpart, CFMutableArray .
The primary difference between NSArray and NSMutableArray is that a mutable array can be changed/modified after it has been allocated and initialized, whereas an immutable array, NSArray , cannot.
In Swift, the NSArray class conforms to the ArrayLiteralConvertible protocol, which allows it to be initialized with array literals. For more information about object literals in Swift, see Literal Expression in The Swift Programming Language (Swift 4.1).
If I am not wrong you want to add an object of NSMutableArray in another NSMutableArray you can do it by following code
var myArray : NSMutableArray = ["Hello"]
var arrayOfArray : NSMutableArray = [myArray]
// Insert more arrays with insertObject or addObject
arrayOfArray.insertObject(myArray, atIndex: 0)
arrayOfArray.addObject(myArray)
//Retrive
var newArray:NSMutableArray = arrayOfArray[0] as NSMutableArray
println("\(newArray)")
For Swift 3:
var myArray : NSMutableArray = ["Hello"]
var arrayOfArray : NSMutableArray = [myArray]
// Insert more arrays with insertObject or addObject
arrayOfArray.insert(myArray, at: 0)
arrayOfArray.add(myArray)
//Retrive
var newArray:NSMutableArray = arrayOfArray[0] as! NSMutableArray
print("\(newArray)")
Here is an example:
var mutableArray: NSMutableArray = []
var nestedMutableArray: NSMutableArray = []
mutableArray.addObject(nestedMutableArray)
var retrievedNestedMutableArray:NSMutableArray = mutableArray[0] as NSMutableArray
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With