NSMutableArray represents a modifiable (mutable) array object for Cocoa and Cocoa Touch.
1
vote
4answers
108 views
Objective-C: Copy Array, Modify Element (Object) in the Copy ONLY
I've read through many SO posts before asking this question and I'm guessing this answer was in there somewhere, but I didn't see it. I'm new to Objective-C and I'm trying to do a (seemingly) simple ...
0
votes
2answers
50 views
NSArray of NSStrings is returning just one big string in one object, and I need a lot of objects
I have a NSArray that get in WS by JSON some date values.
That is what my NSLOG are returning:
"2013-05-31T17:00:00Z",
"2013-05-31T17:30:00Z",
"2013-05-31T18:00:00Z",
...
2
votes
2answers
101 views
NSPredicate nested relationship
I am trying to filter a mutable array of objects using NSPredicate and am having trouble access the level that contains the property I would like to filter on.
To give a simplified example consisting ...
-6
votes
6answers
53 views
how to check NSString in NSMutableArray [duplicate]
I want search (to check) one NSString in NSMutableArray. but I dont know about it.
NSMutableArray *a = [[NSMutableArray ...
0
votes
3answers
96 views
how to send an array as a parameter to json service in iOS
I am using iPhone JSON Web Service based app.I need to pass input parameter as an array to a JSON web Service, how can I do this?
Array Contains 12 elements.
Here am providing sample service...
input ...
1
vote
1answer
22 views
Adding objects to array NSXMlParser no data
I'm trying to make a XML-parser that saves data from YR.no-API. The parser should add data to these two datastructures. My problem is when i try to add a WeatherTimeData object to my array in ...
0
votes
2answers
49 views
How to remove the nsmutablearray's object from subview?
i have nsmutablearray in which i saved some character means alphabets now what i want is
to display these objects as subview on screen. and i did it easily..and em doing this through loop.. i am ...
0
votes
2answers
46 views
how to check status inside NSMutableArray
I have 3 NSMutableArray. I want compare two NSMutableArray of three and find different index and store in anotherNSMutableArray . I want print this sentence when dont save in third NSmutableArray.
...
0
votes
1answer
45 views
NSMutableArray memory allocation
I have an NSMutableArray with 14 indexes acting as a global NSArray, lets call it 'A'. In each of these indexes I have a sub-array (therefore I have 14 sub-arrays within 'A').
These arrays then form ...
0
votes
1answer
61 views
Pushing data from one UIViewController to another [duplicate]
I am pushing a string from one UIViewController to another so far I am doing this successfully however, when I add the pushed string to an NSMutableArray and NSLog the count of the array it always ...
0
votes
2answers
43 views
how to compare 2 NSMutableArray and get different number of value
I want compare 2 NSMutableArray values and check which indexPath is different and store this numbers of index in one array.
for example I have these NSMutableArray :
NSMutableArray *a = ...
1
vote
5answers
95 views
NSArray removeObject removes all objects in array
My project creates a bomb, an explosion, then checks for collisions in the explosions and finally delete the bombs that didn't get hit in a collision. This is explained in more detail here. The ...
0
votes
1answer
17 views
UItableview crash at cellForRowAtIndexPath bcoz of my NSmutableArray containing special characters
I am fetching data from web service and store on the NSmutableArray
app.firstName=[[NSMutableArray alloc]initWithObjects:[[[luckyNumbers ...
-5
votes
4answers
66 views
how select random values for array with some common elements [closed]
hi I want to select random elements in array
but it contains another array elements..
for example
//its the first Array
NSMutableArray *arr = [[ NSMutableArray ...
0
votes
3answers
101 views
Remove objects from array
Trying to remove the objects from NSMutableArray, below is how addition done to array.
sectionInfo = [self.collectionView indexPathsForSelectedItems];
How tried to remove
[sectionInfo ...
0
votes
1answer
33 views
how to store object to NSmutablearray in app delegate?
I'm having a problem with storing and accessing objects with NSmutable array in app delegate. I have tried methods form other websites and stack overlay pages but yet no solution. I want to able to ...
1
vote
2answers
31 views
CCSprite won't add itself to NSArray
I am trying to add an CCSpriteto an array so I can do stuff with in another method. The array is just simply declared in the @interface like this NSMutableArray *currentBombs;
. I then try to add the ...
-2
votes
1answer
47 views
How to access the values of NSMutableDictionary in Objective-C?
This is my code
NSMutableArray *responseArray = [responseString objectFromJSONString];
I want to do like this to get values:
NSMutableDictionary *responseDict = [responseArray ...
-1
votes
3answers
48 views
Add String data to NSMutableArray [closed]
I have an NSString that gets a new value everytime a cell is clicked i want to add this value to an NSMutableArray, I have tried the following [NSMutableArray addObject:NSString] but this adds the ...
0
votes
2answers
30 views
Better way to loading Table with data coming from server.
I am implementing tableView which loads data from server. I got two scenario:
Get complete data from the server and store in the array say 500 items. Now whenever I need those data I will call my ...
0
votes
4answers
59 views
get distinct value from NSmutablearray [duplicate]
i have a nsmutablearray as is shown below. I would like to retrieve list value without redundancy. in this example i should retrive 10 20 30
NSMutableArray *array = [[NSMutableArray ...
0
votes
4answers
46 views
Nsinteger accesible issue
When i try to add nsinteger value into array it shows warning,
Incompatible pointer to integer conversion sending 'NSInteger *' (aka 'int *') to parameter of type 'NSInteger' (aka 'int'); dereference ...
0
votes
0answers
40 views
Amazon iOS S3 how to sort file list array by date?
I'm reading files from amazon S3 bucket like:
S3ListObjectsRequest *req = [[S3ListObjectsRequest alloc] initWithName:MY_BUCKET];
S3ListObjectsResponse *resp = [s3 listObjects:req];
// Array of file ...
1
vote
1answer
58 views
Objective-C Containers that take objects
I'm doing my first steps in objective-c (after a long, long time away from it) by translating some Java code I wrote for an Android game. It seems like there is no container that can take an object, ...
0
votes
1answer
9 views
Populating a Table View from an Array while App is Running
I am working on an app where the user can add NSString objects to an NSMutableArray and then the array is used to populate a Table View.
I have found lots of posts about populating a Table View from ...
1
vote
1answer
33 views
NSTableView edits not changing NSMutableArray
I have a Class that stores some strings along with a BOOL flag that is set to YES if one of the strings has been updated.
I have a NSTableView that displays the strings in my class. The view is ...
0
votes
2answers
34 views
Empty UITableView
I have a editable tableView and i cant remove the last object heres my method :
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle ...
0
votes
1answer
21 views
Print to Array each a button is pressed from Textview
I am trying to print to array each time I press a button. Here is my code
array = [[NSMutableArray alloc] initwithObject:textview.text,nil];
The output I am getting is:
:test
And then when I ...
0
votes
1answer
69 views
NSMutableArray appears empty but is being populated
Am having a major problem with an NSMutableArray, I'm probably missing something really obvious - have probably been looking at it so much that I just can't see it.
Am reading some Tweets and then ...
0
votes
1answer
53 views
How do would you split this NSString into a NSDictionary?
I have some data i aquire from some linux box and want to put it into a NSDictionary for later processing.
How wold you get this NSString into a NSDictionary like the following?
data (
eth0 (Errors ...
0
votes
1answer
35 views
withSortColumn sorting failed with 2 digits
In my application i have used the the following code to set the array value from core data,i want add the array value withSortColumn reference @"companyNormalOrder". The @"companyNormalOrder" having ...
4
votes
2answers
38 views
Converting an object of an array
I have the following block of codes in my program.
for(int k=0;k<reqroom.count;k++)
{
NSString *rent=[roomRent objectAtIndex:k];
NSString *tax=[roomTax objectAtIndex:k];
NSString ...
0
votes
4answers
56 views
Synthesized NSMutableArray is returning null
So I've declared this in my appDelegate.h
@property(nonatomic,strong) NSMutableArray *featured;
I've synthesized it like so in my appDelegate.m
@synthesize featured;
When I log ...
0
votes
1answer
50 views
NSMutablearray addObject is not working it overwrites data
I'm a beginner to XCode.
1- I have a view with UITableViewCell(FirstViewController)
2- I have another view(SecondViewController) that contains some textfields to get data from user
3- I have to pass ...
0
votes
2answers
47 views
Checking if object exist in object array without looping
I would like to check if my NSMutableArray contains my custom object. But if I understand correct contains functions searches for the same object in array (placed at the same memory point)
...
0
votes
2answers
49 views
Objective c: Getting error when adding object into NSMutableArray during threading
Here is what I want to achieve. 1. Searching all the files 2. find all .jpg files during the searching 3. save all .jpg file paths into NSMutableArray
Here are the codes:
Created the ...
0
votes
2answers
46 views
Sorting Array of Datas in Objective C
Say I have Stored some array of data using NSMutableArray. The stored array contains Timestamp and real time datas
I am receiving array of size 6 each time from a sensor device. The first position ...
1
vote
1answer
31 views
iOS NSXML dictionary not adding to array
I have an instance of the NSXML Parser parsing some xml and storing it in an array of objects. The XML has some image URLS and titles that I am trying to add to a dictionary, and then add the ...
1
vote
3answers
67 views
how to add UIImage from a NSMutableArray of images to UIButton using setImage
I have an array of UIImages which I have created like this
UIImage *tButtonImage = [UIImage imageNamed:@"button-measurement.png"];
UIImage *tPButtonImage = [UIImage imageNamed:@"button-parts.png"];
...
0
votes
1answer
51 views
(NSString *) description — not clear on something… (Objective-C)
Let's say I have two array's. Let's imagine one is a NSMutableDictionary, the other is an NSMutableArray.
I also have this defined:
-(NSString *) description {
// return a human readable version ...
2
votes
3answers
84 views
Could [NSMutableArray array] return nil?
For example in low memory conditions. I'm reading third party code and I saw this
NSMutableArray *array = [NSMutableArray array];
if (array != nil) {
[array addObject:anObject];
}
I've never ...
1
vote
2answers
40 views
Why my sorting method using NSSortDescriptor doesn't work well?
I filter my table result using NSPredicate
NSPredicate *resultPredicate = [NSPredicate
predicateWithFormat:@"Name CONTAINS[cd] %@ OR Address CONTAINS[cd] %@",
...
-2
votes
1answer
34 views
sort views in NSMutableArray [closed]
I am using a NSMutableArray to get all the subViews of a specific superView, everything works.
Now i want to sort the array according to the subviews.
EX: I have added 3 images, 1)Header 2)Image ...
0
votes
3answers
61 views
NSMutableArray not saved NSUserDefault
I'm trying to save a NSMutableArray with NSUSerDefault and then open the array.
Here some code:
-(IBAction)btnSave{
Class *aClass = [[Class alloc]init];
aClass.idClass=@"aaaxxx";
...
0
votes
1answer
35 views
URL arrays saving
I have an NSMutableArray and I put URLs in this array.
there is no problem but when I save it with NSUserDefaults it doesn't keeps the content when I load it after closing the app.
I also tried to ...
-2
votes
4answers
54 views
Add string to the 0th index of NSMutablearray? [closed]
i have a NSMutableArray "array1 " with 11 elements i want to insert one more string at the first position how can i do this ?
i tried following code but this throwing exception
NSArray *paths = ...
-1
votes
2answers
82 views
Comparing a string in a NSMutableArray to a NSString
I'm very new to objective-c and this question may seem very simple so I am sorry if it is. I think I know how to get a user to input a string in C and comparing that to a string in an array by using ...
0
votes
1answer
30 views
Adding int to NSMutableArray initWithCapacity
I'm trying to create a mutable array of two integers
@interface ViewController ()
{
NSMutableArray *myArray;
}
initialized with capacity of two objects
- (void)viewDidLoad
{
[super ...
0
votes
3answers
28 views
Others UIImageView NSMutableArray
I have 5 pictures and i want to add to array
code:
#import "ViewController.h"
UIImageView *pic;
NSMutableArray *picArray;
@interface ViewController ()
@property (nonatomic, strong) NSMutableArray ...
0
votes
5answers
81 views
crash while removing objects from NSMutableArray
In my iphone project (ARC enabled) i have a nsmuatble array which contains some 5 managed objects (which are retrieved from core data ) and in some scenario i need to remove all the objects from that ...




