NSString is the plain-text character-string class in Cocoa and Cocoa Touch. See also NSMutableString, NSData and NSMutableData (for objects that contain bytes rather than human-language characters), and NSAttributedString and NSMutableAttributedString (for rich-text strings).

learn more… | top users | synonyms

0
votes
1answer
30 views

How to move UILabel text left or right?

I'm making a calculator and the numbers in the label will always get truncated so the user can't see the full display. To fix this problem, I've been told I should make buttons that can move the text ...
0
votes
0answers
16 views

How to Access iPhone's Autocorrect Words Database?

i need my application to know all the words in a certain language and to be able to work with them as NSString. i was thinking to do it by accessing the autocorrect words database, is it possible? ...
0
votes
0answers
5 views

How to load an array in UIWebView in Xcode 4.6 by using HTMLString?

hello friends i am new to iPhone please do help me.And my question is how to load this array in UIWebView? (void)viewDidLoad { [super viewDidLoad]; first_heading = [[NSArray alloc] ...
-1
votes
3answers
31 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 ...
-2
votes
1answer
153 views

RetainCount is -1 after alloc? [duplicate]

Please don't mark Duplicate:- I have created the few lines NSString *str = [[NSString alloc] init]; str = @"Kashyap"; NSLog(@"%d",[str retainCount]); and Output is -1 .Please explain.
1
vote
2answers
40 views

What to do if NSString has " inside link

This might be a stupid question, but what do I do when an NSString has a " inside it? It is being read as if the end of the text has come. For example: NSString *url1 = @"<a ...
0
votes
0answers
7 views

Getting .vsh file from Bundle that path return nil in ios?

I tried to get the .vsh file from bundle path that return nil. VertexShader file cube.vsh in project bundle i retrieve using that code given below: NSString *str = [[NSBundle mainBundle] ...
-1
votes
2answers
24 views

NSString get substring separed by 2 defined strings

I have some NSString object, for example: NSString *inputString1 = @"Name is \"Mark\""; NSString *inputString2 = @"Name is \"Joe\""; I need to extract Mark and Joe values substrings from input. ...
0
votes
3answers
42 views

How to append the following characters ‡, †, * as superscript to NSString in iOS

I need append the following characters ‡, †, * as superscript to NSString in iOS . Need your help. I use the following http://en.wikipedia.org/wiki/General_Punctuation_(Unicode_block) link but they ...
-1
votes
2answers
41 views

Truncate string values from txt file and add to array

I have a txt file which was copied to Supporting Files of my Xcode project.The data in txt file is of format: abacus@frame with balls for calculating abate@to lessen to subside abdication@giving up ...
0
votes
1answer
30 views

NSNumberFormatter interfering with NSString intValue

I have an NSForm that is being used to display content to the user. The form can either be updated via the application by connecting to an web hosted XML file or manually edited by the user. Through ...
-1
votes
0answers
15 views

FGallery iOS Application which Loads URL using JSON not working [closed]

I need some help regarding my application. It reads JSON data from web server which contains URL addresses of webcams, which then will be displayed in FGallery iOS App ...
0
votes
2answers
60 views

How to give hyperlink in the nsstring, to share in fb?

NSString "Get the xxx iPhone App Here". In this for string "Here" , I want to give hyperlink to particular URL. Its for FB Share , and i'm using UIActivityViewController. I don't wanna go for UILabel. ...
0
votes
3answers
61 views

How can I replace certain words in a sentence with other words while maintaining the correct capitalization efficiently?

As detailed in this previous answer, http://stackoverflow.com/a/16458627/1633251, it appears that enumerateSubstringsInRange: is much faster than separating the string into an array with some guessed ...
-2
votes
0answers
44 views

Reorder NSString, extern NSString *const hello; [closed]

I am using the Aviary SDK for an app and am confused about how to re-order the strings. This key allows developers to customize the visibility of, and order in which tools appear in the SDK ...
0
votes
1answer
8 views

Convert nsstring with UTF8 encoding in it?

I have an nsstring @"I\xe2\x80\x99m" that I want to convert to the NSString @"I'm" any idea how to do that? Thanks!
0
votes
0answers
39 views

Parse NSString and replace certain substrings [duplicate]

Say I have a string that contains: "My computer is on fire! What should I do?" and I wanted to parse this string for all the substrings that had a length greater than 2. If the substring's length was ...
0
votes
1answer
38 views

How to fix an NSString Expected expression error in a switch statement? [duplicate]

I'm getting an "expected expression" error in a switch statement on the first line of the code below in this NSString: NSString *emailTitle = @"some text"; break; case 4: // mail ...
-5
votes
5answers
61 views

How to extract two numbers from an NSString? [closed]

Below is the string I have NSString *myString = @"file_1_23.pdf"; ^ ^^ What I want to extract is 1 & 23. Any idea how to get this? Other possible of string can be ...
-1
votes
2answers
48 views

Escape bad characters for iOS UILabel?

I'm feeding some NSString data (forum posts queried from my website) into a UILabel as part of my first app. Thing is, sometimes, depending on the content of the post, the Label goes entirely blank. ...
0
votes
1answer
28 views

Xcode debugger displays string correctly but console does not

When I hover over my nsstring in the debugger, apostrophes and special characters show correctly, but when I print the nsstring to the console letters and numbers print fine as before but special ...
1
vote
6answers
96 views

Index of a character from the NSString in iOS

I have an NSString for example "This is my question".I want to find all the indices of the character/substring "i" ie In this case If index starts from 0,then I want 2,5,16 as my answer.
0
votes
0answers
19 views

integer value from NSString with multiple zeros

I'm mostly sending UIColor hex code threw web, and when retrieving it I only get one digit for some numbers. So if I send 000 when retrieving it, its only 0. How can I get whole value and not remove ...
0
votes
2answers
79 views

remove excess white space

I have an unfiltered string that may or may not have an excess amount of white spaces. So for example we have the following string: NSString *testData= @"Jim Bob Marcus Trent Mark\n\n ...
1
vote
1answer
67 views

Objective-C Language Syntax - “Type Checking” Constant Strings

Cocoa and CocoaTouch use string constants frequently, and I'm wondering if there is syntax that enforces (encourages?) a specific set of strings as a method's argument. For example, ...
1
vote
1answer
66 views

How do I convert an array of ints to a NSString in Objective c?

First off, I'm pretty new to coding so bear with me if this is a dumb question. I don't know how to convert soemthing like int array[10] into a single NSString. I've been searching for solutions, but ...
0
votes
2answers
58 views

How do I split the current time into 3 strings; hours, minutes, and seconds

I'm making a clock app, and I want to display the current time, with the components (hours minutes, seconds) spaced out. I think that the only way to do that is to separate the time into three ...
0
votes
1answer
29 views

Can I use identical NSStrings as one sempahore for @synchronized

As far as I know, identical NSStrings are optimized in such a way that they are actually one and the same object in most(all?) circumstances. If yes, does that mean that I can use an NSString pointer ...
1
vote
2answers
103 views

Format phone number in NSString according to a mask

Let's say I have a random phone number in NSString that looks like @"+33142981234" I am also getting some masks for phone number formatting from a server like these: mask = " (###) ###-###"; What ...
1
vote
4answers
45 views

RangeOfString crash on not finding result iOS

I have string from JSON that sometimes looks like this @"2, 18, 27, 29" called mayString. Other times this string will just be @"2" (One number and no comma separation) I want to test if the string ...
0
votes
1answer
27 views

How to properly form the requestString for a POST NSUrlRequest on iOS when array values are involved?

I need to form a POST NSURLRequest and I need to pass into the request this structure: inspection (an array of NSDictionaries with string keys and values) property (same structure as array1) ...
0
votes
0answers
8 views

Setting NotANumberSymbol to an empty string?

why NSNumberFormatter's method setNotANumberSymbol:(NSString *)string ignores the empty string as a parameter (@"")? It even ignores the string, if it contains only spaces and zeros (@" 0 0 0 ")? Is ...
0
votes
2answers
65 views

Cannot display a NSString in detailTextLabel

I can add text to my UITableView, but when I try to add to detailTextLabel a certain string that used to be a NSDate, the app crashes and says: 'NSInvalidArgumentException', reason: '-[__NSDate ...
0
votes
1answer
23 views

Convert “Sat, 27 Apr 2013 08:54:17 EDT” to NSDate

Can somebody help in converting the text "Sat, 27 Apr 2013 08:54:17 EDT" into String. I have tried the NSDateFormatter with formatting style of "EEE, dd MMMM yyyy HH:mm:ssZ" but it returns only nil ...
0
votes
3answers
37 views

NSString of comma separated days to NSDate calculate closest day to current day

I have a string like this 13, 27, 29 representing days of the month I want to separate them like below into date objects mayString = [mayString componentsSeparatedByString:@","]; I then want to be ...
0
votes
3answers
39 views

Get substring from string in iphone

I have a string like this <img alt=\"Marco Bueno\" src=\"http://u.goal.com/136600/136687_thumb.jpg\" style=\"float: left;margin:0 10px 10px 10px;\" title=\"Marco Bueno\" /><p ...
0
votes
1answer
65 views

NSCFString objectAtIndex: unrecognized selector sent to instance Objective C [closed]

I am trying to get some json data and show it as text in a UILabel but I keep on getting a app crash with the following error -[__NSCFString objectAtIndex:]: unrecognized selector sent to instance ...
0
votes
1answer
49 views

Check if String is a Partial Match to Another String

I have a search bar on my map view that allows the user to search for the name (annotation title) or address (annotation subtitle). I have it working just fine if the user types in the entire title or ...
3
votes
3answers
29 views

how to get extension file NSString [duplicate]

I want get extension (format file from NSString) but I dont know about it please tell me syntax for getting format file from NSString. NSString *name = @"Xcode-tutorial.pdf" I want get .pdf format ...
0
votes
0answers
26 views

Value comparison with NSString - Xcode

I'm trying to compare a value to one stored in a NSString, but I get the following error: Implicit conversion of int to 'NSArray *' is disallowed with ARC Here is my code: NSString *tmplabel = ...
0
votes
2answers
49 views

Insert UNICODE HAIRSPACE character into NSString

i'm trying to add a UNICODE character to NSString in this ways: NSString *euFormatted = [NSString stringWithFormat:@"\u200A%@",self.eu]; or unichar hairspaceChar = 0x200A; // hairspace symbol ...
1
vote
0answers
21 views

How to correctly transliterate Cyrillic, without diacritics, using CFStringTransform?

I am trying to use CFStringTransform to transliterate names entered in Russian to a safe ASCII for credit card processing. However, when stripping diacritics č becomes a c, which is really not a good ...
0
votes
4answers
48 views

Specify floating point number accuracy in NSString

I'm trying to specify the accuracy of my floating pointer number in my NSString but I keep on getting this error: Format specifies type 'double' but the argument has type 'NSString *' Here is my ...
-4
votes
3answers
49 views

IOS: Converting NSDate to NSString gives nil value

Where is my mistake? I have an NSDate with this format (data: 14/05/2013 10:52:27) and I have to obtain an NSString. NSLog(@"Data: %@",lettureObj.data); NSDateFormatter *outputDateFormatter = ...
0
votes
3answers
33 views

Syntax for “or” & “and” statements

what is the proper syntax for putting together and & or statements? I am trying to implement some code to validate the data a user is inputting. I have a segmented control, a text view and a ...
0
votes
1answer
43 views

NSTimer in AppDelegate does not update UILabel in UIViewController

My goal is to start a timer in the app delegate and use it to call methods in other view controllers. When these methods are called they will update the text of the UILabel. I'm performing the method ...
-2
votes
2answers
41 views

Function Does Not Recognize Array Values [closed]

I tried to create an array via parsing a .csv file Then I run it through the this function. //Array NSString *filePath = [[NSBundle mainBundle] pathForResource:@"499CSV" ofType:@"csv"]; NSString ...
2
votes
1answer
28 views

IOS How to remove Zero Width Space [ E2 80 8B ] from NSString

With copy/paste, one of my clients put in a textfield of my IOS app a text containing Zero Width Space [ E2 80 8B ] and I want to remove them. here's an example of text : basse ​température ​avec ...
0
votes
3answers
55 views

Converting NSString to float

I am getting a NSString from user inputs that comes to me as something like this: $10,000.00 I have a method that strips the $ off: - (NSString*) stripDollarSign : (NSString*) stringToStrip { ...
1
vote
4answers
63 views

How can i convert NSdata to hex string?

i tried following codes for converting a NSData to hex string values but all are wrong? here "result" is my NSdata i need a hex string as output but iam not getting that NSUInteger dataLength = ...

1 2 3 4 5 82