Tagged Questions
An immutable, integer indexed, array of objects
47
votes
3answers
48k views
How do I iterate over an NSArray?
I'm looking for the standard idiom to iterate over an NSArray. My code needs to be suitable for OS X 10.4+.
34
votes
2answers
26k views
How to sort a NSArray alphabetically?
How can I sort an array filled with [UIFont familyNames] into alphabetical order?
25
votes
4answers
7k views
Join an Array in Objective-C
I'm looking for a method of turning a NSMutableArray into a string. Is there anything on a par with this Ruby array method?
>> array1 = [1, 2, 3]
>> array1.join(',')
=> "1, 2, 3"
...
21
votes
5answers
19k views
Sort NSArray of date strings or objects
I have an NSArray that contains date strings like this: "Thu, 21 May 09 19:10:09 -0700"
I need to sort the NSArray by date. I thought about converting the date string to an NSDate object first, but ...
18
votes
4answers
3k views
how to create an “array of selectors” in objective-c
i'm using the iphone sdk (3.0) and i'm trying to create an array of selectors to invoke a variety of methods within one class.
Obviously, I'm doing something wrong (I think @selector isn't considered ...
13
votes
8answers
959 views
What's the best way to put a c-struct in an NSArray?
What's the usual way to store c-structures in an NSArray? Advantages, disadvantages, memory handling?
Notably, what's the difference between valueWithBytes and valueWithPointer -- raised by justin ...
12
votes
2answers
7k views
How do I add a CGPoint to NSMutableArray?
I want to store my CGPoint to the NSMutable Array, so , I have method like this:
[self.points addObject:CGPointMake(x, y)];
But I got the error, it said that :
Incompatible type for argument 1 ...
11
votes
2answers
13k views
Convert NSArray to NSString in Objective-C
I am wondering how to convert an NSArray example: ( [43,545,@"Test"] ) to a string in objective-c. An applescript example might be:
set the_array to {43,"Testing", 474343}
set the_array to the_array ...
11
votes
1answer
3k views
Use NSArray to to specify otherButtonTitles?
UIAlertSheet's constructor takes an otherButtonTitles parameter as a varg list. I'd like to specify the other button titles from an NSArray instead. Is this possible?
i.e. I have to do this:
id ...
10
votes
6answers
142 views
Adding non NSObjects to NSMutableArray
This recent SO discussion has confused me. The NSMutableArray prototype for addObject: is
- (void)addObject:(id)anObject
and id is defined in objc.h as
typedef struct objc_class *Class;
typedef ...
10
votes
1answer
4k views
How to return an NSMutableArray from an NSSet
I'm able to put the contents of an NSSet into an NSMutableArray like this:
NSMutableArray *array = [set allObjects];
The compiler complains though because [set allObjects] returns an NSArray not an ...
10
votes
2answers
6k views
iPhone - getting unique values from NSArray object
I have an NSArray formed with objects of a custom class. The class has 3 (city, state, zip) string properties. I would like to get all unique state values from the array.
I did read through the ...
10
votes
2answers
8k views
Convert NSArray to NSDictionary
How can I convert an NSArray to an NSDictionary, using an int field of the array's objects as key for the NSDictionary?
9
votes
3answers
765 views
Executing Blocks From NSArray?
I was just thinking, as you can treat Blocks like objects if I create two of them and then add them to an NSArray is there a way to execute them from the array?
int (^Block_001)(void) = ^{ return ...
9
votes
2answers
2k views
indexOfObject vs. indexOfObjectIdenticalTo
What is the difference between these two NSArray methods?
9
votes
3answers
5k views
Best way to sort an NSArray of NSDictionary objects?
I'm struggling with trying to sort an array of dictionaries.
My dictionaries have a couple of values of interest, price, popularity etc.
Any suggestions?
9
votes
3answers
4k views
How to find a string in an NSArray?
This feels like such a stupid question, but how can I find a string in an NSArray?
I tried using
[array indexOfObjectIdenticalTo:myString]
but that requires the sting to have the same address.
...
9
votes
7answers
10k views
How to create a NSString from a format string like @“xxx=%@, yyy=%@” and a NSArray of objects?
Is there any way to create a new
NSString from a format string like @"xxx=%@, yyy=%@" and a NSArray of objects?
In the NSSTring class there are many methods like:
- (id)initWithFormat:(NSString ...
8
votes
5answers
92 views
Why zone is allway nil while implementing NSCopying?
It may be simple question, but why implementing NSCopying protocol in my class, I get zone == nil
- (id)copyWithZone:(NSZone *)zone
{
if (zone == nil)
NSLog(@"why this is allways nil");
...
8
votes
3answers
198 views
Match NSArray of characters Objective-C
I have to match the number of occurrences of n special characters in a string.
I thought to create an array with all these chars (they are 20+) and create a function to match each of them.
I just have ...
8
votes
7answers
348 views
When should I release my array?
I am parsing some JSON from the internet and then adding them to an array which is the datasource for my UITableView. I am not sure when I should be releasing my array?
.h: items
...
8
votes
3answers
2k views
Separate NSArray to a list of NSString type objects
A UIActionSheet is initalized with:
UIActionSheet *actionSheet = [[UIActionSheet alloc] initWithTitle:@"Title" delegate:self cancelButtonTitle:@"Cancel" destructiveButtonTitle:nil
...
7
votes
2answers
291 views
Sort NSArray of NSStrings like Addressbook on iphone sort
I have an array of strings (names)
and i would like to sort them like how the address book on the iphone sorts them
eg: éli -> under E
eg: àli -> under A
eg: 4li -> under #
any suggestions?
7
votes
2answers
9k views
NSArray from NSSet - Do I have to sort it myself?
I've got data in an NSSet, and I need to get it into an NSArray.
Do I need to sort it myself (again, this came from Core Data) or can I get it out in a sorted order?
7
votes
3answers
11k views
Search through NSArray for string
I would like to search through my NSArray for a certain string.
Example:
NSArray has the objects: "dog", "cat", "fat dog", "thing", "another thing", "heck here's another thing"
I want to search for ...
7
votes
5answers
2k views
Objective C: how to check if variable is NSArray or NSMutableArray
How can i check if a variable is an NSArray or an NSMutableArray?
7
votes
4answers
17k views
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 don't see any method that would let me do that. I know in advance how many objects there are. I want to avoid ...
6
votes
3answers
93 views
for loops - Object type disregarded?
I sometimes like to organize IB elements into NSArrays primarily to help me organize my elements. Most often, different classes of objects make it into the same array with each other. While this is a ...
6
votes
2answers
2k views
How to check if an NSString contains one of the NSStrings in an NSArray?
I'm making an iPad app and I need to figure out if an NSString contains any of the NSStrings in an NSArray. Any suggestions?
6
votes
3answers
631 views
Non-retaining array for delegates
In a Cocoa Touch project, I need a specific class to have not only a single delegate object, but many of them.
It looks like I should create an NSArray for these delegates;
the problem is that ...
6
votes
3answers
2k views
Finding maximum numeric value in NSArray
I have an NSArray of NSNumbers and want to find the maximum value in the array. Is there any built in functionality for doing so? I am using iOS4 GM if that makes any difference.
6
votes
2answers
1k views
Is it possible to filter an NSArray by class?
Is there a way construct a predicate to filter by class type?
I currently loop through the array and check to the class of each object. Maybe there is a cleaner way?
6
votes
1answer
4k views
Xcode warning: “NSArray may not respond to -addObject”
In my header file, I have this code:
@interface TableViewController : UIViewController
{
IBOutlet UITableView *tblListData;
NSArray *arryData;
}
In my class declaration file, I have this ...
6
votes
5answers
3k views
Disadvantage of using NSMutableArray vs NSArray?
I'm using an array to store cached objects loaded from a database in my iPhone app, and was wondering: are there any significant disadvantages to using NSMutableArray that I should know of?
edit: I ...
6
votes
2answers
8k views
Difference b/w NSArray and NSMutableArray
What is the difference b/w NSArray and NSMutableArray ? i am new to iPhone.
5
votes
3answers
130 views
Sorting an nsarray of strings not string based
So i have an array that i retrieve from a web service in no particular order
example:
0 => x large,
1 => large,
2 => XX large,
3 => small,
4 => medium,
5 => x small
I need to ...
5
votes
5answers
200 views
Searching a NSArray for the nearest number(s)
Is there an easy way to search an NSArray of numbers to find the nearest (or exact if it exists) matches to a user-input number?
Say I have an array like this: 7, 23, 4, 11, 18, 2, and the user ...
5
votes
2answers
82 views
Core Data returning NSArrays instead of NSStrings
For some reason all of the NSString typed attributes are being returned as NSArrays in my Article object. Here's my function to retrieve them:- (NSArray *)getSavedArticles
{
NSFetchRequest ...
5
votes
2answers
234 views
Objective-c return method returning NSMutableArray instead of declared NSArray return type
If I want to return an immutable array like this + (NSArray *)ids but inside this method I'm declaring a NSMutableArray because I want to sort it using -sortUsingSelector:.
Returning this method ...
5
votes
1answer
164 views
Slice NSArray from end of array
What is the best way to "slice" an NSArray from the end, rather than the beginning, of the array (for example, finding the subarray containing the last few elements of a NSArray of unknown length)? In ...
5
votes
2answers
212 views
Multiple NSArray enumeration
Let's say I have three arrays of same size. I have to do something with all objects. If I would use a standard C array, I would write something like
for (i = 0; i < size; i++) {
...
5
votes
4answers
1k views
NSMutablearray move object from index to index
I have a UItableview with reordable rows and the data is in an NSarray. So how do I move an object in the NSMutablearray when the appropriate tableview delegate is called?
Another way to ask this is ...
5
votes
3answers
949 views
Extracting strings from a NSArray of objects, based on a array of NSStrings
OK, this is a bit obscure, but it's giving me a headache.
If you have an array of strings
{@"1", @"2", @"4"}
And you have a array of Recipe objects
{ {recipe_name:@"Lasagna", recipe_id:@"1"}
...
5
votes
2answers
415 views
2-dimensional arrays in Objective-C?
I'm working on a basic iPhone game that requires a single-screen tilemap. Nothing difficult there. I come from a C background, so my current solution looks a bit like this:
typedef struct _Tile {
...
5
votes
3answers
1k views
Retain, alloc, properties … Topic to make your Obj-c life easier !
The more I code, the more I get lost ... so I decided to create a topic entirely dedicated to the memory management for me (and others) not to waste hours understanding obj-c basics ... I'll update it ...
5
votes
4answers
12k views
5
votes
2answers
17k views
Plist Array to NSDictionary
I have a plist:
<plist version="1.0">
<array>
<dict>
<key>name</key>
<string>Alabama</string>
<key>abreviation</key>
...
5
votes
6answers
3k views
If NSDictionary is good for paired values, what is good for triple values?
NSDictionary is good for key-value pairs, by what data structure is best for when you have three values? Is is best to create a class for those 3 values, and then let each object in an array contain ...
4
votes
5answers
676 views
Missing sentinel in method dispatch
I want to create a subclass of NSMutableArray and need to override the -initWithObjects: method.
But How to call [super xxx];?
- (id) initWithObjects:(id)firstObj, ... {
[super ...
4
votes
3answers
90 views
NSArray @property backed by a NSMutableArray
I've defined a class where I'd an public property to appear as though it is backed by an NSArray. That is simple enough, but in my case the actual backing ivar is an NSMutableArray:
@interface Foo
{
...