The fast-enumeration tag has no wiki summary.
0
votes
1answer
29 views
Fast Enumeration Not Working Anymore
Really simple question I hope, I have this code and it was working and have always worked but now it stopped working.
NSArray *keys = [NSArray arrayWithObject:NSURLIsDirectoryKey];
NSFileManager *man ...
-2
votes
1answer
65 views
How to print returned value of Method using fast enumeration [closed]
I'm learning Objective-C using the Big Nerd Ranch Objective C book and I'm having some issues with the Chapter 17 challenge.
I am required to create a class called StockHolding which is a subclass ...
-1
votes
1answer
61 views
What is the complexity of this algorithm? I thought it was big O(n) - using only 1 for…in loop
ios project https://github.com/HarrisonJackson/iOS-find-top-4-integers-in-big-list---also-use-blocks-and-delegates
The algorithm should solve for the top 4 integers in an unsorted array. Here I ...
0
votes
3answers
63 views
Why set types in Obj-c fast enumeration loops?
NSMutableArray *array = [[NSMutableArray alloc] init];
NSString *string = @"string";
[array addObject:string];
NSDate *date = [[NSDate alloc] init];
[array addObject:date];
for (*placeholder* ...
0
votes
7answers
113 views
Fastest way to check if an array contains the same objects of another array
The goal is to compare two arrays as and check if they contain the same objects (as fast as possible - there are lots of objects in the arrays). The arrays cannot be checked with isEqual: as they are ...
0
votes
1answer
101 views
Vectorization of Matlab Code involving ODE solver at each iteration
I want to write a fast MATLAB code where I need to write a for loop and I need to solve an ordinary differential equation each time.Is there any way to vectorize the code?
Following is the part of ...
0
votes
1answer
59 views
What's the fastest way to hash a very large dataset for UICollectionView Layout…NSIndexPath is too slow
I have a UICollectionViewController with a large dataset (>2000 items) with a custom layout. Using sections, the scrolling performance became extremely choppy. Using Instruments and a few tests, I ...
1
vote
1answer
32 views
proper value to type in the fast enumeration
i have a model (core data) set up, called Animals. i have to access this in a specific order and to do so i use the code listed below. what am i supposed to type instead of the XXXXXXXXX in the for ...
0
votes
1answer
115 views
Objective-C Fast Enumeration Search Doesn't Break
I'm trying to find a matching object in a tree, so I'm using ObjC fast enumeration. The problem is my method finds the matching value, hits the return line, and then sets the value to nil and keeps on ...
0
votes
3answers
72 views
How to recognize the first element in Objective-C style enumeration?
I have an NSMutableArray of NSNumbers, I want to enumerate through all of them with Objective-C styled enumeration. Here's what I've done so far.
for ( NSNumber* number in array )
{
//some code
}
...
1
vote
3answers
286 views
Setting objects to nil during fast enumeration
I want to set an object to 'nil' as I enumerate through an array, as follows:
for(Object* object in array){
object = nil;
}
Xcode then tells me 'Fast enumeration variables can't be modified in ...
-2
votes
2answers
96 views
Fast enumeration and adding objects to NSMutableArray
I am attempting to add objects to NSMutableArray "allItems1"
for (PMGWine *w in [[PMGWineStore sharedStore]allItems]) {
[allItems1 addObject:w];
NSLog(@"%@", w);
}
NSLog(@"%d", ...
1
vote
2answers
70 views
Need JSON document that is generated to be in same order as objects inserted in NSMutableDictionary in iOS
I am generating a JSON document from an NSMutableDictionary that is composed of keys that point to NSStrings, as well as two keys that point in turn to other NSMutableDictionary's. My problem is that ...
-4
votes
1answer
75 views
Need to generate a JSON document to upload to server after iterating an NSMutableArray of objects with NSString parameters in iOS [closed]
Dear fellow iOS developers:
I have an NSMutableArray that holds a collection of objects, with each object having three parameters of type NSString. What I need to do is iterate through this ...
0
votes
4answers
74 views
Need to modify an NSMutableArray that is pre-loaded with data during fast enumeration in iOS
Dear fellow iOS developers:
I have an NSMutableArray that is holding a list of objects. What I am trying to do is iterate through this list of objects, and find the matching object for the I am ...
1
vote
2answers
73 views
Trying to dynamically add UILabels to a view by doing fast enumeration of an NSMutableArray
Dear fellow iOS developers:
I have an NSMutableArray that contains objects of type Person. The Person object contains parameters of NSString *name, NSString *dateStamp, and NSString *testScore. ...
0
votes
1answer
72 views
Trying to check to see if an object exists in NSMutableArray without knowing the index, and replace it if it exists in iOS
Dear fellow iOS developers:
I have an NSMutableArray that contains objects of type Person. The Person object contains parameters of NSString *name, NSString *dateStamp, and NSString *testScore. ...
0
votes
2answers
184 views
Fast enumeration with NSDictionary holding NSDictionary objects
I have an NSDictionary with four objects. Each object is an NSDictionary containing thousands of objects. I have verified through logging of the description of the top level dictionary that it ...
1
vote
3answers
300 views
NSMutableArray fast enumeration issue
Newbie obj-c question.
I have a custom tableview with four custom cells. In every cell is a editable textfield for customer info. I need to improve switching between textfields by Input Accessory ...
1
vote
4answers
273 views
fast enumeration for removing item in NSMutableArray crash
i have a strange issue , if i remove my item at forin enumeration , it would crash , so like this:
for (Obstacle *obstacleToTrack in _obstaclesToAnimate) {
//this if else not so important for ...
2
votes
1answer
101 views
How to safely store objects in extra within countByEnumeratingWithState under ARC?
How can I safely store a couple object instances in NSFastEnumerationState's extra array?
I want these items to be retained while the loop is running, then released when the loop is complete.
- ...
8
votes
1answer
2k views
What is the BOOL *stop argument for enumerateObjectsUsingBlock: used for?
I've been using enumerateObjectsUsingBlock: a lot lately for my fast-enumeration needs, and I'm having a hard time understanding the usage of BOOL *stop in the enumeration block.
The NSArray class ...
4
votes
3answers
211 views
Using Objective-C, is there a way to convert a tree into Fast Enumeration?
If there is a tree, which has a rootNode, and it points to left and right for its children nodes (a binary tree), is there a way to convert it into Fast Enumeration as in Objective-C 2.0? So we can ...
0
votes
1answer
180 views
'Assigning to 'id' from incompatible type'
I'm implementing a objective C wrapper for Box2d (which is written in c++). The b2Body keeps a reference to its wrapper B2Body in its userData field. GetUserData returns a void*. I'm now implementing ...
3
votes
2answers
142 views
Is this an inefficient way of using fast enumeration?
I don't entirely understand the details of how fast enumeration works, but compare the following two cases:
for(NSObject *object in ...
0
votes
1answer
102 views
Subclassing JavaScript Array breaks fast enumeration
I'm subclassing Array using prototype, in this way:
MyArray = function()
{
Array.apply(this, arguments);
};
MyArray.prototype = new Array();
All works fine as expected and I can initialize a ...
1
vote
1answer
125 views
Is it safe to delete an NSManagedObject using fast enumeration?
You're not supposed to modify the collection being iterated upon with fast enumeration, but I'm not really sure to what extent that is. The below code has not caused me any problems, but I'm not sure ...
3
votes
3answers
414 views
Big Nerd Ranch Objective C Chapter 17 Challenge - Defining Classes
I'm having trouble working with classes. I have to create "StockHolding" objects that are subclasses of NSObject. I create instance variables and methods. Then I create 3 iterations of the ...
2
votes
3answers
135 views
Fast enumeration on a class object
Note: It's quite complicated to explain. Please bare with me on this one.
Hi everybody,
I'm implementing an application where both instances of a class as well as the class itself have "children" ...
-1
votes
1answer
71 views
Conceptual advice: fast enumeration, array of dictionaries, and multiple instances [closed]
I have quick conceptual question that I'd like to get some direction on.
I have an array that contains a number of dictionaries. I want to loop through the array, find the dictionary keys I need and ...
0
votes
3answers
147 views
improve fast enumeration performace
I have a huge word list of over 280.000+ words that is loaded from an sqlite database to an NSArray. then I do a fast enumeration to check if a certain string value entered by the user matches one of ...
1
vote
3answers
359 views
How do you stop fast enumeration?
How would you stop fast enumeration once you have gotten what your looking for.
In a for loop I know you just set the counter number to like a thousand or something.
Example:
for (int ...
3
votes
1answer
392 views
Fast Enumeration slower than for-loop in nested enumeration (with test-results)?
I know there are quite some topics that seem to be about the exact same thing, but I didn't find one that really was about what I wanted.
So I was curious and wanted to compare the performance of ...
0
votes
2answers
208 views
Traversing two-dimensional array, using for-in syntax
I'm traversing through a two-dimensional array like this:
for (menuViewController *aSelection in mainDataArray) {
...
}
However, how do I access the lower arrays' data?
This following code ...
1
vote
2answers
99 views
How to fast enumerate and compare objects of many NSArrays in Objective-C?
I have many different NSArray's stored in .dat files, in the Documents folder of my iPhone application, like so:
john.dat
mary.dat
bob.dat etc...
The number of .dat files is unknown and it will ...
0
votes
2answers
542 views
Example of adopting/implementing fast enumeration for my class?
I'm trying to understand how to adopt the fast enumeration protocol (under iOS/objective C) for a class I'm creating. I read the section of Apple's docs, but... I don't quite get it!
Anyone have ...
1
vote
3answers
72 views
Do we release an argument in fast enumeration
do we release an argument in fast enumeration? Therefore would this code be accurate:
for (MKCircle *circle in localOverlays) {
[mapView addOverlay: circle];
[circle release]; // Is it ...
0
votes
1answer
1k views
iOS - Core Data - Delete records using relationships and fetch request
Overview:
I have an iOS project in which I am using core data
I have an Employees entity and a Department entity.
1 department can contain many employees
So the entity Department has a "to many" ...
1
vote
1answer
58 views
How to avoid copy and pasting?
I'd like to improve this method if possible: this is a small section whereby all of the textfield (eyepiece, objectivelenses etc) texts are saved. Unfortunately, having to do this lots of times for ...
0
votes
1answer
90 views
checking user input via textfield
I've been struggling with this for quite a few days now; my app has a diagram with uitextfields to represent labelling of the picture. I would like to check the user input against a dictionary (for ...
0
votes
3answers
203 views
How to get strings with specific length from NSArray?
I want to get strings that have specific length in NSArray.
The array has many elements and I don't want to use fast enumeration.
Is there a possible way?
0
votes
1answer
58 views
How to increment a 'score' during fast enumeration
I have the following code which I would like to use to check user answers and output a score (out of 5). I use a plist with the answers in and check the textField.text against it. What I'm ...
0
votes
1answer
654 views
compare new CGPoint value to a CGPoint value in Array
I'm generating a number of circles with random positions. what I want to prevent is the circles from overlapping each other. so I want to compare the newly generated CGPoint value to the ones that are ...
0
votes
1answer
260 views
Quickly Setting Inheritable ACEs on Large Network Filesystems
I have a question regarding ACLs on a network filesystem.
Basically, I want to set a permission on a top level folder object that has potentially 100,000+ file and folder objects below it. I want the ...
0
votes
1answer
346 views
Fast Enumeration on NSArray of string literals
Using ARC...
NSArray *array = [NSArray arrayWithObjects:@"dog", @"cat", @"mouse", nil];
for(NSString *animal in array) {
NSLog(@"animal = %@", animal);
}
Yields an index out of bounds error.
...
0
votes
2answers
242 views
Objective C fast enumeration trouble
I am trying to use fast enumeration to print all songs that are in a playlist, but it seems like I am doing it wrong. Could someone help me out?
I have defined a Song class like this :
@interface ...
0
votes
1answer
96 views
Is this piece of code going to crash my app at random times?
for(UIView *view in [_scrollView subviews]) {
NSMutableArray *_mutableArray = [_array mutableCopy];
[_mutableArray filterUsingPredicate:[NSPredicate predicateWithFormat:@"guid like ...
0
votes
1answer
183 views
can NSPredicates be used to replace objects in an array with values from a dictionary?
If I had an NSDictionary like this:
NSMutableDictionary *valuesDictionary = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithDouble:-60.0],@”a”,
[NSNumber ...
1
vote
3answers
3k views
fast enumeration for NSDictionary instance ordered by the key
Overview
I am using fast enumeration to iterate through an NSDictionary instance
I expected the NSDictionary instance to be enumerated based on the ascending order of the key but that doesn't seem ...
4
votes
5answers
1k views
Fast Enumeration on NSArray of Different Types
I have this question here (as well other quesrtions on SO), and the Apple docs about Objective-C collections and fast enumeration. What is not made clear is if an NSArray populated with different ...


