Tagged Questions
0
votes
2answers
45 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 ...
1
vote
2answers
63 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 ...
0
votes
1answer
24 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
2answers
61 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
3answers
36 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
50 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 ...
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
23 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
46 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
18 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
43 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 ...
0
votes
1answer
34 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
24 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 ...
1
vote
4answers
58 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
vote
2answers
46 views
Getting differences between 2 NSString
I've got 2 NSString and I wanna get the differences between these 2 strings..
let me make an example:
NSString *pippo = @"pippo";
NSString *pippone = @"pippone";
I would like something like
...
-3
votes
3answers
77 views
Create a Custom Formatted Dictionary Array from CSV File of Data
I've created an iPhone app that has a dictionary array of locations (lat,long,point). I created the array by manually entering each value.
myLocationArray = @[
@{
...
-1
votes
2answers
68 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
52 views
componentsSeparatedByString:@“” (every character in array) [duplicate]
I want to add every Character in an NSArray ("123" -> To NSArray with "1","2","3"). I tested componentsSeparatedByString:@"" and componentsSeparatedByString:nil, but it doesn't work, can anyone ...
-1
votes
2answers
48 views
How to get the values of selected cells of a UITableView in one string
i'm pretty sure this is really simple. But i can't get to make this work. I have a UITableView where i display dynamically a list of facebook friends, thanks to their FBID. Basically, i would like to ...
0
votes
3answers
59 views
Objective-C: Convert the entire double value to string without losing data
I have the following double value: 0.000900137869045636
which I would like to convert to a NSString.
I've tried the following code, but no matter what, it rounds the value to this: 0.000900138
...
0
votes
3answers
63 views
How to Split NSString to multiple Strings after certain number of characters
I am developing an iOS app using Xcode 4.6.2.
My app receives from the server lets say for example 1000 characters which is then stored in NSString.
What I want to do is: split the 1000 characters ...
0
votes
4answers
41 views
split NSString using componentsSeparatedByString
I have a string I need to split. It would be easy using componentsSeparatedByString but my problem is that the separator is a comma but I could have commas that aren't separator.
I explain:
My ...
0
votes
2answers
28 views
Append text with variables Objective C
I was trying to append text without any success until I tryied this:
NSString *n_result = @"";
n_result = [n_result stringByAppendingString:[NSString stringWithFormat:@"The number "]];
n_result = ...
-3
votes
3answers
78 views
Find and replace starting substring of NSString [closed]
I want to check whether a string contains a substring at the start of the string or not. If the string is present then how can I replace it with another string?
-5
votes
3answers
65 views
what is actual difference between NSString and NSMutable String in objective C with the help of example? [duplicate]
what is actual difference between NSString and NSMutable String in objective C?
I have searched a lot but not getting any answer..I understand that NSString is Immutable object and NSMutableString is ...
0
votes
3answers
67 views
How to print the reverse of NSString in objective c without using componentsSeparatedByString method?
I want to make a method which gives reverse of string.suppose I pass a NSString "Welcome to Objective C" in method and that method return a reverse of string like "C Objective to Welcome" not "C ...
0
votes
3answers
142 views
Find and replace long words in an NSString? [closed]
I'm trying to write a method that will search an NSString, determine if an individual word within the string is over 6 characters long and replace that word with some other word (something arbitrary ...
-1
votes
3answers
44 views
how to Separate one part from all part NSString [closed]
I want to create two variable NSString that one is all and another is a part of first variable. like this :
NSString *all = @"john/red/inter/274503/jackat.jpg";
NSString *part = //I want this ...
0
votes
0answers
36 views
how to use keychain example from apple docs
I am trying to store and retrieve a string value to my keychain, I have been using the example found here however when I call mySetObject method my app is crashing.
This is what the code looks like ...
0
votes
1answer
38 views
Json Zero considered as NSNumber and greater as NSstring
When the value of a JSON entry is zero Xcode considers it an NSNumber, and when it is greater as an NSString.
The problem is when using a if to check the value, the app crashes in some cases.
I would ...
0
votes
2answers
48 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 ...
1
vote
0answers
51 views
Binary data from file into NSString
I'm building a web server for an iOS app and ran into problem when serving binary files such as images. I need to put the binary data of files into a NSString that I send with the HTTP response ...
0
votes
1answer
28 views
Encoading string function for apostrophe objective c
http://php.weenggs.com/scrap/service.php?op=search&search_term=Crabbie's ->my api
http://php.weenggs.com/scrap/service.php?op=search&search_term=Crabbie%20 ->want like this
[myStr ...
0
votes
2answers
36 views
Convert NSString in 12 hour time format
In my project I have an NSString that contains data like this
NSString *s=@"20";
I want to convert this as "08:00 ". How can I do this?
I tried this one:
NSDateFormatter *dateFormatter = ...
2
votes
3answers
105 views
How do I concatenate strings together in Objective-C?
So I am trying to concatenate a bunch of input strings together as one string so I can save that to a text file.
So far I am trying to write something like this
NSString *tempString = [[NSString ...
0
votes
2answers
52 views
Replacing HTML tags with text attributes [duplicate]
I'm getting data from a web service and the result contains some HTML tags, that I'm then trying to convert. For example, I want to replace <P> tags with line breaks, and <STRONG> from ...
0
votes
2answers
58 views
What does stringWithUTF8String do?
So I have done some searching around so that I could see what it was I was doing with my code, and I couldn't find any answers as to what this very one specific line of code does.
NSString* name = ...
0
votes
2answers
37 views
How do i hash a string using MD5 with following code?
How can i hash a string "abcdefgh" by using MD5 in objective C?
I saw following code but i dont have any idea that how do i use this thing
- (NSString *) md5
{
const char *cStr = [self ...
2
votes
3answers
64 views
Create a NSString from different class
I have a method that receive from a SOAP method a result as:
SDZPaymentResult* result = (SDZPaymentResult*)value;
If I use: NSLog(@"%@", result);
It shows:
<CXMLElement 0x20d9c950 ...
0
votes
1answer
34 views
Trying to allow only certain strings into the URL bar
To sum it up, I have a browser in my app, and I want it to only launch 5 websites, nothing else. Is there a way I can make my browser just launch the 5 websites by setting customs strings, like an if ...
-2
votes
0answers
82 views
Error with char, NSString in NSTask
I have a NSTask thats outputting data using
#import <Foundation/NSTask.h>
int main(){
NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/bin/sh"];
NSArray *arguments = ...
0
votes
1answer
38 views
Get macro value from NSString containing macro name
I have an array full of #define macros values. I have also a plist file (dictionary) with dictionaries, each named the same as the #define macros name. I get the the names of the dictionaries from the ...
0
votes
2answers
52 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
2answers
42 views
Strange Overflow - Objective-C
I was trying to solve the problem 22 from Project Euler, with the following code :
NSArray *alphabet = [NSArray ...
-1
votes
0answers
46 views
Xcode object not allocated
SOLVED : Debugger not showing right values. works fine with NSLog.
here is a simple example of what is happening. (Xcode 4.3)
I really have no idea whats wrong.
in the header i declared:
NSString ...
1
vote
2answers
38 views
NSString -initWithContentOfFile error - Objective-C
I'm trying to load to an NSString, the content of my file named names.txt, in the directory of the project. To do this, I have the following code :
NSError *error = nil;
NSString *names = ...
0
votes
1answer
36 views
XCode - Referring to a UIImageView variable through another string variable?
Is it possible to use a string variable to refer to a UIImageView variable and change the image? The string variable is created by adding an "s" to the start of the tag of the button pressed. This is ...
0
votes
1answer
45 views
If Statement Failing sometimes with id BoolValue Comparison?
I am pulling data from the web that is formatted in JSON and when I parse the data using "ValueForKeyPath" it stores the string value as an id object.
So I store the data into a NSMutableArray
In the ...
0
votes
1answer
80 views
How to make NSAttributedString from NSString UTF-8
I have NSString and I need to make NSAttributedString.
NSString is something like:
bvcx b vcxbcvx bcxvbcxv bvx xbc bcvx bxcv bcxv bcxv bcxv bcvx bcvx bcxvbcvx bvc bcvx bxcv{
NSFont = ...

