0
votes
2answers
30 views
How to split an NSArray into two equal pieces?
I have an NSArray, and I want to split it into two equal pieces (if odd "count" then add to the latter new array) - I want to split it "down the middle" so to speak.
The followi …
0
votes
1answer
23 views
Is it possible to Sort Arrays with custom objects containing String elements localized AND with correct Numbers in Cocoa Touch?
Assumed having the class Account with Name and accountNo both as NSStrings. I want to sort an Array of Accounts either by name or by accountNo. The sort should be done localized.
…
0
votes
1answer
40 views
How to slice an NSArray in Objective-C?
What's the simplest way to extract a slice of an NSArray in Objective-C?
(much like the array_slice function in PHP)
1
vote
4answers
113 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 …
0
votes
3answers
57 views
Unable to assign images to an imageView from an Array, but can assign images to an imageView from a UIImage variable
Hi all,
I have a problem with arrays and passing images between views that I would like some help on!
So the background is that I have:
• RootViewController (which handles my tabl …
0
votes
3answers
56 views
NSArray + remove item from array
How to remove an item from NSArray.
1
vote
2answers
16 views
obj-c NSArray count comparison fail
NSArray *test1 = [NSArray arrayWithObjects:@"1",@"2", nil];
NSArray *test2 = [NSArray arrayWithObjects:@"1",@"2", nil];
NSArray *test3 = [NSArray arrayWithObjects:@"1",@"2", nil];
…
0
votes
2answers
69 views
Number of objects in an NSArray
Hi, I was wondering if there was any possible way to get the number (count) of objects in an NSArray Object
0
votes
2answers
34 views
iphone sdk see size of local file (one created by application)
Is there anyway I can look at the size of a file the application creates in bytes then store that number to use later? OR is there any way I can tell if an object in an NSArray is …
0
votes
2answers
26 views
Silly NSArray question
I can't believe I forgot this, what is in an NSArray if there's no value in the field (this is being determined by loading a .plist file). I know I should know this, but right now …
0
votes
3answers
55 views
sorting in nsmutable array
Suppose I have following data in my game. I have developed game in cocos2d.
Name Score
Sagar 10000
Amit 2000
Vishal 90
Above data is stored in plist file.
Plist ha …
0
votes
0answers
6 views
Extract or show some dictionaries for sequenced TableView
In a Tabbar app, I have a TableView to show all names of each dictionary of an array coming from an array like this :
<array>
<dict>
<key>Name</key>
< …
0
votes
2answers
60 views
Beginner: Why do I get a EXC BAD ACCESS?
I am geting an exception while hitting the line "self.myData = ..."
GDB Program received signal: EXC_BAD_ACCESS
Here's my code:
- (void)viewDidLoad {
[super viewDidLoad]; …
0
votes
3answers
75 views
How can I filter an array based on the objects in another array in Objective-C?
I have an array of objects in a tableView. I want the user to be able to go to another page and select from a checklist of objects to filter the first array.
How should I handle t …
0
votes
1answer
27 views
Using NSArray’s makeObjectsPerformSelector to have side effects
I have an NSArray of Foos in an Objective-C program. I would like to call the doIt function of each Foo, however, the makeObjectsPerformSelector function of NSArray does not allow …
