Tagged Questions
The nsset tag has no wiki summary.
18
votes
5answers
9k views
What is the most efficient way to sort an NSSet?
What's the most efficient way to sort objects in an NSSet/NSMutableSet based on a property of the objects in the set? Right now the way I am doing it is by iterating through each object, add them to a ...
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 ...
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?
6
votes
3answers
268 views
NSSet implementation
This question is just out of curiosity but, how is NSSet implemented? What data structure is behind it and what are the access times for adding and removing elements? If I had to guess, I'd say it was ...
4
votes
3answers
2k views
NSDictionary, NSArray, NSSet and efficiency
I've got a text file, with about 200,000 lines. Each line represents an object with multiple properties. I only search through one of the properties (the unique ID) of the objects. If the unique ID ...
4
votes
1answer
421 views
NSSet to NSData, then back out again, for GameKit?
I'm trying to do some image edit syncing between two of the same app running on different iPhones. I would like to send an NSSet * from one device to another (which I imagine involves encapsulating in ...
3
votes
2answers
393 views
NSManagedObject hierarchy import and export
I'm on the run to make my NSMangedObjectClass profile im-/exportable.
I try it this way
Exporting works correctly if I write the Relationships in NSArrays because NSSet doesn't have writeToFile ...
3
votes
2answers
2k views
Example of NSSet's objectsPassingTest function please?
I'm going nuts here. For some reason I can't find a single, complete example of how to use the objectsPassingTest: function of NSSet (cocoa). Before anyone points me to the pages about blocks, I've ...
3
votes
1answer
435 views
using NSPredicate with a set of answers
I have a set of strings containing personIDs and I have a NSFetchedResults of people managedObjects with unique strPersonIDs. I tried to create an NSPredicate but it fails. Any help with this would ...
3
votes
3answers
871 views
How to turn an NSArray of strings into an array of unique strings, in the same order?
If you have an NSArray of strings
{ @"ONE", @"ONE", @"ONE", "TWO", @"THREE", @"THREE" }
How would I turn that into
{ @"ONE", @"TWO", @"THREE" }
..where the array follows the same order as the ...
3
votes
1answer
509 views
comparing objects in NSSet with objects in NSArray
I've been pondering over this problem for a while now but I am not able to get a nice concise efficient solution yet.
Problem:
I have a recipe list which is an NSArray, every recipe object contains ...
3
votes
2answers
4k views
Getting an object from an NSSet
If you can't get an object with objectAtIndex: from an NSSet then how do you retrieve objects?
3
votes
3answers
2k views
How to search an NSSet or NSArray for an object which has an specific value for an specific property?
How to search an NSSet or NSArray for an object which has an specific value for an specific property?
Example: I have an NSSet with 20 objects, and every object has an type property. I want to get ...
3
votes
1answer
844 views
NSManagedObject relationship NSSet iteration
I have a subclassed NSManagedObject (ObjectA) which has a relationship one-to-may to another subclassed NSManagedObject (ObjectB). I get the ObjectB NSSet from ObjectA's generated method.
I want to ...
2
votes
1answer
70 views
Populate NSMutableSet with an Object is not working - NSLog and Debugger shows Null
I am trying to create a set of objects using NSMutableSet. The object is a tag, each tag has an id and a name.
The tag class is defined like so:
#import "Tag.h"
@implementation Tag
@synthesize id, ...
2
votes
1answer
95 views
How do I merge 2 NSSets in objective-c?
How do I merge 2 NSSets in objective-c ?
I can't find solution on google.
2
votes
3answers
226 views
NSSet with NSStrings containstObject not return YES when it should
I'm loading a dictionary (list of word, not the class) into a NSSet as NSStrings. I then repeatedly send this set the message -containsObject:someNSString. But it always returns false. I wrote some ...
2
votes
1answer
246 views
How do I join an NSSet's elements to create an NSString?
If I have an NSSet of NSString objects, how can I join them together to create a single NSString?
2
votes
5answers
698 views
NSSet -member to check equality of NSValue
I have a NSSet containing many thousands of NSValue objects (wrapping CGPoints). I would like to very quickly find if a given CGPoint value exists in the NSSet. It seems to me that the member: method ...
2
votes
1answer
315 views
Does NSSet use hash to define uniqueness?
I've been working under the assumption that NSSet used hash to look up potential matches, and then called isEqual on each of those to check for real collisions, but I realized that I can't find any ...
2
votes
1answer
776 views
Retrieving an NSManagedObject from an NSSet
I've got two entities with a one-to-many relationship between them. The entity that holds "many" has the expected NSSet property. What I'm not sure is how to access a specific element in the NSSet. ...
1
vote
1answer
106 views
Does NSSet's containsObject: test for pointer equality or value equality?
Say I have an NSSet with a string in it. If I send containsObject: with another string which is a different pointer but the exact same string value, will that return YES?
Also, is it the same story ...
1
vote
3answers
44 views
Objective C - Can I use NSSet to setEnabled:NO to a set of NSButtons?
I have written a timer application that passes a speechTime from an IBAction and counts down to 0. There are five distinct speechTimes, and a toggler button that will stop the speech time countdown. ...
1
vote
2answers
84 views
NSSet of NSNumbers - member method is always nil
I want to have a simple NSSet which is loaded with some NSNumbers and then find out if those numbers are already added in the set or not. When I do this:
NSMutableSet *set = [[NSMutableSet alloc] ...
1
vote
2answers
83 views
compare two nssets based on attributes of objects
so i have two nssets.
nsset1: person.id = 1, person.id = 2, person.id = 3
nsset2: person.id = 1, person.id = 2
results should be
nsset1 - nsset2: person (with id 3)
nsset2 - nsset1: null
this ...
1
vote
1answer
79 views
How does Enumerate work in MonoTouch?
In MonoTouch I need to process each object in an NSSet. My attempt, using Enumerate, is as follows:
public override void ReturnResults ( BarcodePickerController picker, NSSet results )
{
var n = ...
1
vote
3answers
171 views
“NSSet allObjects” does random ordering?
I have the following code:
self.temporaryImageArray = [(NSSet *)[[array objectAtIndex:0] images] allObjects]
Array holds an Band object from my CoreData model. It has an NSSet as a property called ...
1
vote
1answer
201 views
Transferring items from NSArray to NSSet for NSManagedObject
Two related questions:
When you use [NSSet setWithArray:], does it remove duplicate object for you automatically?
How can you tell NSSet exactly what you want "duplicate" to mean? I.e. if you have a ...
1
vote
2answers
94 views
Problem combining NSMutableSets
I have the following code:
NSMutableSet* localSet = [[NSMutableSet alloc] initWithArray:symbols];
NSMutableArray* fetchedSymbolsArray = [NSMutableArray array];
for (NSDictionary* symbol in ...
1
vote
1answer
67 views
How to set a relation of an object of Core Data entity
I have an entity mainEntity with three one-to-many relations to three different entities entity1, entity2 and entity3 (relations are named after objects they're referring to).
entity mainEntity
...
1
vote
2answers
288 views
KVO and Core Data, Getting only the Changed Values through Observation
So I'm fairly new to Core Data and KVO, but I have an NSManagedObject subclass that is successfully observing its own to-many relationship. The problem is, on observed changes, I want to iterate ...
1
vote
4answers
441 views
How do I check if an NSSet contains an object of a kind of class?
How would you implement the following instance method for NSSet:
- (BOOL)containsMemberOfClass:(Class)aClass
Here's why I want to know:
Core Data model:
How do I add a Facebook authorization to ...
1
vote
0answers
148 views
I'm having problems un-archiving an NSMutableSet with circular references
I'm having problems unarchiving an NSMutableSet object in my iPhone (iOS 4.3) app.
I have a subview of UIImageView that contains an ivar of type NSMutableSet. I have defined the NSMutableSet in the ...
1
vote
2answers
687 views
Which is better, NSSet’s containsObject or fast enum?
I need to determine whether an object is included in a Core Data to-many relationship (which is an NSSet), and I’m trying to decide which of two solutions is better:
Solution 1)
if ...
1
vote
2answers
201 views
When calling NSSet's setByAddingX methods, which set's objects win a tie?
I bring this up because objects that compare the same with isEquals: aren't necessarily identical. Some (many) objects only compare certain properties to determine equality.
That makes the exact ...
1
vote
2answers
221 views
iOS Collections and a strange algorithm
So I want to know if this is a good idea or a bad idea.
I'm building a simple iOS game (using standard UI Controls) which allows a user to create Characters, and Monster "Templates", then build ...
1
vote
2answers
774 views
Save list of CGPoints using NSUserDefaults
I have a bunch of CGPoints from a CCTMXLayer I want to save to NSUserDefaults but cannot seem to figure out an elegant way of doing so.
Originally I was hoping to save an NSDictionary with an ...
1
vote
2answers
224 views
Why is this piece of code so slow? (CoreData & NSSet)
I have an app and I'm implementing full text search. I have 2 enitites: Keywords and Articles with a many-to-many relationship between them.
The problematic piece of code is this:
...
1
vote
1answer
274 views
App hanging/crashing after adding NSSet of entities with relationships
I have to main issues that I believe are related as they both occur on the same line of code.
Data Model
NB: I have simplified the code and model as best I can.
I have 3 entities in my Core data ...
1
vote
1answer
332 views
unique values of custom object NSString property in nsarray
I have an array which stores custom objects.
Objects are of type Venue which have a property defined as name(which contains the names of venue).
Now I want to filter out objects with unique names.
...
1
vote
1answer
325 views
Problem with CoreData and accessing relationships : request for member in something not a structure or union
I have a question regarding a rather advanced DataModel which I would like to use with CoreData.
Before I get into details about what I did so far, I will describe what I want to do.
I have a List ...
1
vote
1answer
395 views
Adding object to an NSMutableSet automatically when it's initiated… (iphone)
I have this problem adding an object to NSSet...
The NSMutableSet *set "belongs" to main ViewController.
I want to add an object (Wall) to this NSMutableSet automatically if I add it to view in ...
1
vote
3answers
577 views
Change an NSSet of NSNumber into an NSSet of int
I'm using the data with core data and get an NSSet of NSNumber... my question is how can I do to change easily all the objects into int values? or can I directly get the int values from the database?
...
1
vote
2answers
4k views
How do I put objects in an NSArray into an NSSet?
I have some NSDictionary objects stored in an NSArray called telephoneArray. I fetch the values for the key number and then replace the NSDictionary I've just read with a new object at the same index ...
1
vote
2answers
641 views
Cocoa: Any downside to using NSSet as key in NSMutableDictionary?
Is there any downside to using NSSet as key in NSMutableDictionary, any gotchas to be aware of, any huge performance hits?
I think keys are copied in Cocoa containers, does it mean NSSet is copied to ...
1
vote
1answer
1k views
Getting the Minimum Value of an Attribute in a NSSet Made from a One-to-Many Relationship in Core Data
I have several objects set up in Core Data, one of which is "Deck" and one of which is "Card". "Cards" have several numbered relationships, including "id". "Deck" has a one-to-many relationship with ...
1
vote
2answers
453 views
Cocoa-Touch: Quick way to sum a property in all objects within an NSSet?
I may very well be confusing this with the Cocoa (Mac OS X) side of things so it may not exist in Cocoa-Touch...but I thought there was a way to quickly ask a NSSet to poll its members and return a ...
0
votes
2answers
28 views
NSSet to NSArray casting calling objectAtIndex?
I'm trying to update an MKMapView by removing all annotations outside the visible area, and adding and removing some annotations inside the visible area. This is my code:
NSSet *visibleAnnotations = ...
0
votes
1answer
54 views
NSSet or NSMutableSet will have no duplicate objects
I have a sprite class that inherits UIImageView and is used in my game scene alot.
I recently stopped using indented fast enumeration to compare objects with NSSet or NSMutableSet.
But it is ...
0
votes
1answer
26 views
NSArray third party subclass to hold primitive value
I have seen recently some code for a class subclassing NSArray (or any collection class) to hold primitive values.
The idea was instead of writing:
myArray = [NSArray arrayWithObject:[NSNumber ...