2
votes
1answer
54 views
How to convert a unichar value to an NSString in Objective-C?
Hi there,
I've got an international character stored in a unichar variable. This character does not come from a file or url. The variable itself only stores an unsigned short(0xce …
0
votes
3answers
75 views
How to get the first N words from a NSString in Objective-C?
What's the simplest way, given a string:
NSString *str = @"Some really really long string is here and I just want the first 10 words, for example";
to result in an NSString with …
0
votes
2answers
36 views
iphone compare   with NSString
Hi,
i was comparing A string coming from XML with another String and results were showing that they are not equal. but in NSLog() both were same ( e.g. Valore Books ).
then i ch …
1
vote
2answers
49 views
Integer Casting in dealing with strings in Cocoa
I have what I hope to be a pretty simple problem. I'm very simply trying to convert a char to it's lowercase version. Here's my code:
- (IBAction)click:(id)sender {
[outputLa …
2
votes
4answers
442 views
iphone how to check that a string is numeric only
HI , i am getting a string input from a UITextField i want to check that this string in numeric . how i will do that .. (numeric can have decimal points also) . how to do that ?
1
vote
4answers
73 views
What is the purpose of having both NSMutableString and NSString?
Why does Objective C provide both class NSString and subclass NSMutableString rather than just provide NSMutableString? Isn't a NSString equivalent to "const NSMutableString"?
In …
0
votes
1answer
6 views
Trim file extension UITableView
I want to trim the file extension from text I have NSMutableArray'd in table cells.
NSMutableArray *theFiles;
NSFileManager *manager = [NSFileManager defaultManager];
NSArra …
0
votes
1answer
42 views
decodeHexString obj-c implementation, Should I support odd lengthed hexstrings, and if so, how?
I may be missing something in the standard libs, but I don't think so. I have this current implementation:
int char2hex(unsigned char c) {
switch (c) {
case '0' ... '9': …
0
votes
1answer
76 views
Detect Unicode characters in NSString on iPhone
I am working on an SMS application for the iPhone. I need to detect if the user has entered any unicode characters inside the NSString they wish to send.
I need to do this is bec …
0
votes
3answers
70 views
How do I divide NSString into smaller words?
Greetings,
I am new to objective c, and I have the following issue:
I have a NSString:
"There are seven words in this phrase"
I want to divide this into 3 smaller strings (an …
0
votes
1answer
33 views
How to rasterize a string (mac)
I'm trying to take an NSString and rasterize it as a bitmap (an array of bytes (RGBA))
The closest I've gotten to any information on how to do something like this was in a forum p …
0
votes
3answers
78 views
Append a newline to an NSString
I have this:
if (soapResults != nil) {
soapResults = [soapResults stringByAppendingString:@"\n"];
}
But I get a warning:
Assignment from distinct Objective-C type on build.
…
3
votes
1answer
478 views
Encrypted NSData to NSString in obj-c?
I have an iPhone app which encrypts an inputted NSString using CCCrypt (AES256) and a plaintext key. The string and key are given to the encryption method which returns an NSData o …
0
votes
3answers
90 views
Advantage of data type id vs NSString in Objective C?
This code...
NSString * s = [[NSString alloc] initWithString:@"Hello, World"];
s = s.lowercaseString;
NSLog(@"%@", s);
...allows the use of dot notation but is strongly typed.
…
0
votes
3answers
79 views
algorithm to add randomly-generated NSStrings to NSMutableArray
The goal is to generate an NSString chars in length and assign each string to an array. I'm getting stuck on what I need to do with my algorithm to get the correct result. Here's …
