Top "Nsmutablearray" questions

NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.

How to add an NSMutableArray to an NSMutableArray Objective-c

I am making the switch from Java to Objective-c, and I'm having some difficulty. I have searched this problem this …

ios objective-c xcode nsmutablearray nsarray
Difference between NSArray and NSMutableArray

What is the difference b/w NSArray and NSMutableArray?

iphone nsmutablearray nsarray
how to clear an NSMutableArray of custom objects without creating memory leaks?

If I have an NSMutableArray of custom objects, how can I must easily clear the array without causing any memory …

iphone objective-c ios memory-leaks nsmutablearray
How can I fill an NSArray dynamically?

I have a for loop. Inside that loop I want to fill up an NSArray with some objects. But I …

iphone objective-c uikit nsmutablearray nsarray
UIActivityViewController - Email and Twitter sharing

I recently started working with UIActivity to share my app to the world, but I have few problems. First, I …

ios email nsmutablearray ios6 uiactivity
How to convert NSArray to NSMutableArray

ABAddressBookRef addressBook = ABAddressBookCreate(); CFArrayRef allPeople = ABAddressBookCopyArrayOfAllPeople(addressBook); CFIndex nPeople = ABAddressBookGetPersonCount(addressBook); NSMutableArray *tempPeoples=[[NSMutableArray alloc]init]; for(int i=0;i&…

objective-c nsmutablearray nsarray
Objective-C Simplest way to create comma separated string from an array of objects

So I have a nsmutablearray with a bunch of objects in it. I want to create a comma separated string …

objective-c arrays swift nsmutablearray
How can I sort strings in NSMutableArray into alphabetical order?

I have a list of strings in an NSMutableArray, and I want to sort them into alphabetical order before displaying …

objective-c ios cocoa-touch sorting nsmutablearray
How to change the value of an NSMutableArray at a particular index

[array objectAtIndex:i] doesn't work as an L value, so it can't be used to set the object at index …

objective-c cocoa cocoa-touch nsmutablearray lvalue