-1
votes
2answers
71 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
2answers
51 views

NSMutableArray isn't adding my NSString

Im trying to add a NSString to an NSMutableArray and then make the array into NSData and save it with NSUserDefaults. But the array is always nil. Here is my code: - (void)viewDidLoad { [super ...
0
votes
2answers
66 views

XCode - Convert array element to string

I'm trying to get the elements of an NSMutableArray, convert them to strings which are names of UIImageViews and change all the images to one image. I'm using this for loop: for (int i = 0; i < ...
0
votes
1answer
38 views

Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSCFString objectForKey:]

My XML response: { "S:Envelope" = { "S:Body" = { "ns2:getMatchListResponse" = { item = ( ...
1
vote
5answers
61 views

Compare ValueForKey of an array with an NSString

I have an NSString which contains the folderName and i have an array which looks like this, DATA ( { FolderName = Posteingang; ID = 13000; }, { FolderName = Freigaben; ID = ...
0
votes
3answers
60 views

Filtering NSString Objects from an NSMutableArray

My app receives the user's input from a text field and generates all the possible words which can be made from the letters. If the user types in "BOX", the program generates a mutable array which ...
0
votes
1answer
40 views

When I press register button my app has crashed but data insert successfully in database

Here is my response code. NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; NSDictionary *LoginResult = (NSDictionary*)[responseString ...
0
votes
1answer
79 views

How to show newline \n of array in -(NSString *)description method?

I'm a new programmer following the iOS Programming: The Big Nerd Ranch Guide Chapter 2 - Gold Challenge. I have a class BNRItem. And a subclass of BNRItem, BNRContainer. My BNRContainer contains 11 ...
0
votes
2answers
44 views

UITextField find best match string in array

For example I have array with strings: @"demo_1" @"123" @"demo_some_text" @"demo" @"demo_123" @"simple_111" In textfield I input text: @"de". The best match in this @"demo". I Have such method: ...
0
votes
2answers
88 views

how to add NSString from loop in NSMutableArray

I want to add NSString Name in NSmutableArray but I dont know about that. I get 5 NSString name from url in wamp server and I want add these names in NSMutableArray. this is my code but do not ...
2
votes
9answers
116 views

Remove object from NSMutableArray?

I have an array with following elements in ViewDidLoad method inputArray = [NSMutableArray arrayWithObjects:@"car", @"bus", @"helicopter", @"cruiz", @"bike", @"jeep", nil]; I have another ...
0
votes
7answers
121 views

NSMutableArray Compare Different Count

I have a problem for my new app : I have two string : NSString *string1 = @"Il alla a la prison sur le champ" NSString *string2 = @"Il alllla a la prissson sur le champ" I make the arrays : ...
0
votes
1answer
40 views

How can I edit over a NSString that is saved in an Array?

I am saving multiple strings into an NSMutableArray and then setting each string into individual table view cells. If a cell is selected, that string will be displayed in another view. I'd like to ...
0
votes
1answer
63 views

Trouble initialising NSMutableArray with NSString

I'm having problem initialising an NSMutableArray called _entryArray with 2 NSString objects @"00:00:00". I'm getting the following error: Terminating app due to uncaught exception ...
1
vote
1answer
90 views

Concatenate NSStrings from NSMutableArray to NSString

I need to create a NSString for browsing folders in FTP share. i show the directory on a TableView, and user´s can browse by selecting row ´s Im writing the string of selected rows into a mutable ...
0
votes
1answer
108 views

Convert NSString to NSArray [duplicate]

I have one string as follows: NSString *str = @"abcd,efgh"; Now I want to convert this string into NSMutableArray like NSMutableArray *arr = {abcd,efgh}; then how can I do this? any help would ...
0
votes
1answer
54 views

Add NSString to NSMutableArray if NSString is not already pressent - not working

Can't understand why this won't work, it simply says id num hasn't been used before every time... and never adds it to the array. Any help on this would be much appreciated. I'm almost certainly ...
1
vote
4answers
333 views

Efficient way to generate a random alphabet string?

I want a string of all the characters of the alphabet randomized. Right now, I create a mutable array of the 26 characters, shuffle them with the exchangeObjectAtIndex: method and then add each ...
3
votes
1answer
73 views

Change a Property for All Objects in an NSMutableArray

I have an NSMutableArray with 9 objects. Those objects have many properties, like questionName, questionWhatRow, etc. I want to be able to change one of those properties for All of the objects in the ...
-1
votes
1answer
29 views

Checking for the correct answer from an NSString in an NSMutableArray

I have an NSMutableArray that contains an answer to a question. The answer is stored in an NSString. I am trying to check wether the answer is correct or not when the user clicks the done button the ...
0
votes
0answers
47 views

Core Data returns all string attributes in one string

enter code hereI have a app with two entities. One of them is working fine, the other has the following strange behavior, first time that I have trouble like this, as I have a lot of apps with Core ...
0
votes
0answers
47 views

addobject NSMutableArray of NSString for Persian words (right-to-left writing direction)

How do I addobject to NSMutableArray of NSString for Persian words (right-to-left writing direction)? When I do this for text the words appear in left-to-right writing direction and are therefore ...
0
votes
1answer
69 views

How to add String from one array to another

I can't seem to append a string from arrayOne into arrayTwo. It's a very simple problem and I have Googled around and have tried different examples that I found below. Does anyone see the obvious ...
0
votes
0answers
79 views

Unrecognized Selector (NSMutableArray+NSString)

A very basic yet puzzling error; NSString *selectedCategory = @"Rock"; if (self.quoteOpt.selectedSegmentIndex == 1) { selectedCategory = @"Programming"; } //filter array by ti tle using ...
0
votes
6answers
170 views

check and remove a particular string from nsmutable array without index

In Xcode, I store some NSString in NSMutableArray. Hello Here MyBook Bible Array Name2 There IamCriminal User can enter string. Name2 I need to delete that particular string from NSMutableArray ...
1
vote
3answers
35 views

What is the quickest way to remove empty NSStrings from an NSMutableArray?

I have an NSMutableArray with NSStrings for items. Some are blank. What is the quickest way to find and remove the blanks without having to resort to looping, comparing to @"", etc. Thanks, Doug
0
votes
2answers
112 views

Last array value overwrite when adding NSMutableArray into another NSMutableArray

NSMutableArray *no1=[[NSMutableArray alloc]init]; NSMutableArray *no2=[[NSMutableArray alloc]init]; for(int i=0;i<3;i++) { for (int j=0;j<=i;j++) { ...
0
votes
1answer
78 views

NSMutableArray Meta-Data when exported to CSV file

Looking for some advice with an iOS application. Essentially what my app does is generate a CSV file that logs certain events within a period of time. So users can press a button and an entry will be ...
0
votes
1answer
47 views

compare all the objects of one nsmutable array with all the objects of another nsmutable array and get new objects into another nsarray

I am trying to take the back up of all the contacts on to the server. So I am converting the contacts into vCard strings and sending the vCard strings onto the server and also storing the vCard ...
0
votes
4answers
177 views

Search String into NSArray based on charcters order?

My Problem Scenario is like this. I have an NSMutableArray ( Every Object is Nsstring). I have a UItextField ( as Client said) for Search. I want know how to Search String into NSMutableArray like ...
0
votes
2answers
71 views

Parse / Extract & Combine Strings from NSMutable Array

Am trying to figure out how to do this.... I have an NSMutable array populated from an RSS feed as follows : Item 1 (date, title, description) Item 2 (date, title, description) Item 3 (date, ...
0
votes
1answer
58 views

how to assign values into NSString from database

I am getting TEXT type data from sqlite database into an NSMUtableArray Then I assigned them to NSString variables in this way NSString *billname=[NSString stringWithFormat:@"%@",[tempAyyar ...
0
votes
1answer
220 views

NSRange returning nil in simulator

I am making a search function and it works fine on an iphone and the iphone simulator but not the ipad simulator. When I enter my value to search it gives the error basically saying the NSRange is ...
0
votes
0answers
274 views

Xcode add search results to array after search button clicked

Hi I have a large database that I would like to search. Everything works well but it is very slow when I type. I think that while I am typing an array is populating for results. How can I just type ...
0
votes
1answer
53 views

Pick out certain part of NSMutableAray

How would I pick out certain part of NSMutableArray? One fielding array from server is 2012-09-01 09:00:00 America/Los_Angeles I am trying to get just the time. I was thinking turning it into a ...
2
votes
5answers
120 views

Split String into Array Objects

I am getting response from web-service like this Result = ( ( "Test1", "Test2", "Test3", "Test4", Test5 ) ); By, [dict ...
1
vote
2answers
329 views

Loop through NSStrings in NSArray

Basically what I want to do is this: 1. Grab .plist from URL 2. Put array from plist file into an NSMutableArray 3. Loop through each string in the NSMutableArray and sort them into multiple ...
0
votes
1answer
301 views

replaceObjectAtIndex:withObject: not working when passing in a NSString object

I am trying to replace an object at a particular Index in a NSMutableArray however I am getting this error as shown below 2012-07-30 14:50:11.380 PK[3588:907] -[__NSArrayI ...
0
votes
2answers
317 views

nsmutablearray elements to nsstring

I want to retrieve elements that are parsed in a NSMutableArray and store them into a NSString variable and then store them in NSMutableArray as NSString (because I want to display the content in a ...
0
votes
1answer
103 views

Values from NSString to NSMutableArray

I have a NSString with numbers e.g."1,3,6,7" and a global NSMutableArray that is initialized elsewhere. Now to get the numbers from the string to the Array I thought something like this would work: ...
1
vote
2answers
1k views

Using stringByAppendingString to concatenate strings of type ID

I started Objective-C programming about a week ago and am stuck on creating a new string from an array of strings passed into the function. I've researched this thoroughly and can't seem to figure ...
3
votes
4answers
328 views

NSMutableArray to NSString and Passing NSString to Another View IOS5.1

I have an NSMutableArray of names. I want the pass the data (selected name) inside of NSMutableArray as text to another view's label. FriendsController.m: - (void)viewDidLoad { [super ...
0
votes
2answers
321 views

Accented character incorrectly encoding in NSString Array

?I'm building a NSMutableArray of NSStrings from a list and some of the letters are accented (Turkish). I have been able to encode into a NSString and NSLog the results. But when I add that NSString ...
2
votes
4answers
1k views

Search NSString in NSMutableArray

This may be possible duplicate of many existing questions one of them is : This or other links i have searched so far. I am working on an application in which I m displaying Peoples information ...
0
votes
0answers
111 views

EXC_BAD_ACCESS depending on string length in Core Data

This is the strangest / most annoying bug I've ever encountered! I have a modal tableview with an NSMutableArray selectedObjects. With selectedObjects, I compare NSStrings from the datasource with ...
0
votes
2answers
2k views

Parsing JSON string to a NSMutableArray

This is my string: [{"id":"1","nome":"Adriatik"},{"id":"2","nome":"Ard"},{"id":"3","nome":"Albana"},{"id":"4","nome":"Adriana"}] I would like to parse all 'name' of the JSON string into a ...
0
votes
1answer
257 views

How to change the values of an NSString inside an NSMutableArray?

I have a mutable array of strings. For this example, let's say there are 2 strings in it. The operation that I would like to do is take the first string and assign the value of the second string to ...
1
vote
4answers
2k views

iOS - Stanford CS193P Fall 2011 course, Assignment 2 descriptionOfProgram issue

Part of this assignment includes printing out on the display the current equation that is present to be solved, for that I use the following methods: + (NSString ...
0
votes
2answers
210 views

NSUserDefaults won't store my NSStrings

i've tried to store a couple of strings in my NSUserDefaults... can't figure out what i'm doing wrong... -(IBAction)addToFavorite:(id)sender { NSMutableArray* favoritedAlready = [[[NSUserDefaults ...
0
votes
3answers
348 views

Copying an array to a string and displaying the string in order

I am copying an NSMutableArray to a string. When I am displaying the string I am getting a "(" sign before the array items and the array entries are separated by a comma in between. I want to display ...

1 2