Tagged Questions

34
votes
9answers
40k views

Objective-C: Reading a file line by line

What is the appropriate way of dealing with large text files in Objective-C? Let's say I need to read each line separately and want to treat each line as an NSString. What is the most efficient way of ...
0
votes
3answers
59 views

Creating objects with different names in an array using for loop

I am using a for statement to enumerate all objects in the array. For each object in the array I want to make it so that it creates a different object each time so i can refer to different ones e.g. ...
0
votes
6answers
184 views

Error when using NSMutableSet

I get the error * Terminating app due to uncaught exception 'NSGenericException', reason: '* Collection <__NSCFSet: 0x6b66390> was mutated while being enumerated.' when adding an new ...
0
votes
1answer
41 views

Objective-c enumerateUsingBlock Issue

I want to extract all objects that has prefix "be", but I get only the first object, not all from various indexes. "array" contains various objects, and it contains objects like "be", "become", ...