Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

NSString stringWithFormat adding a percent

How can I add a percent to my stringWithFormat function? For example, I'd like to have the following: float someFloat = 40.233f; NSString *str = [NSString stringWithFormat:@"%.02f%",someFloat]; ...
5
votes
2answers
3k views

comma separated thousand NSString stringWithFormat

Is it possible to display 1000.99 as 1,000.99 using [NSString stringWithFormat:@"£%0.2f", 1000.99] Please guide me if I am not on the right track to achieve this?
4
votes
2answers
98 views

Objective C stringWithFormat if statement

I'm pretty new to this - I'm trying to compare a NSString stringWithFormat with some text. It works fine with stringWithString. I can't work out why it doesn't work with stringWithFormat? Many thanks ...
3
votes
1answer
4k views

NSString stringWithFormat - trying to set a label to double digits for single digit numbers

I am trying to have a label display single-digit numbers as double-digit numbers (ie. 1 => 01) . I may be using the wrong method to set the value for the label but the thing is I'm not even sure ...
2
votes
4answers
83 views

iOS: if-else within a stringwithformat

I am an iOS newbie, so please bear with me. I want to construct a string using stringWithFormat, but I want to put in a part of a string only if a condition is true. How would I achieve something ...
2
votes
2answers
73 views

objective-c stringvalue from double

I have the following code: double d1 = 12.123456789012345; NSString *test1 = [NSString stringWithFormat:@"%f", d1]; // string is: 12.123457 NSString *test1 = [NSString stringWithFormat:@"%g", d1]; ...
2
votes
2answers
268 views

NSString stringWithFormat problem

I have such a problem: double calcValue; NSString *buf = [NSString stringWithFormat:@"%14f", myCalculator.calcValue]; buf = "7.142857"; istead of buf = "7.1428571428571423"; I tried to format it ...
2
votes
1answer
2k views

How to append the string variables using stringWithFormat method in Objective-C

I want to append the string into single varilable using stringWithFormat.I knew it in using stringByAppendingString. Please help me to append using stringWithFormat for the below code. NSString* curl ...
1
vote
3answers
90 views

Memory leak : How to stop?

I am using NSObject class to get all the data from a database. When I call that function it will show a memory leak where I assign a string using stringWithFormat. I think when we use this method we ...
1
vote
2answers
98 views

Correct use of format specifier to show up to three decimals if needed, otherwise zero decimals?

I've found %g to show only decimals if needed. If the number is whole, no trailing .000 is added, so thats good. But in the case of for example 1.12345 I want it to short the answer to 1.123. And in ...
1
vote
2answers
640 views

NSString - stringWithFormat vs stringWithString

I have a global NSString variable declared in a .m file. When I use the stringWithFormat to give it a string value anywhere within the .m file, that value does not persist in between function calls. ...
1
vote
2answers
550 views

NSString stringWithFormat swizzled to allow missing format numbered args

Based on this SO question asked a few hours ago, I have decided to implement a swizzled method that will allow me to take a formatted NSString as the format arg into stringWithFormat, and have it not ...
1
vote
1answer
433 views

Objective-C “miscasting” a string/int using stringWithFormat and %d

I think this is a relatively simple question, but I don't precisely know what's happening. I have a method that tries to build a string using NSString's stringWithFormat It looks like this: ...
1
vote
4answers
2k views

NSString stringWithFormat

I don't know what I am missing here. I am trying to concatenate strings using NSString stringWithFormat function. This is what I am doing. NSString *category = [row objectForKey:@"category"]; ...
1
vote
2answers
712 views

Use stringWithFormat: as a file path in cocoa

I'm having a problem with a cocoa application that takes the value of a text field, and writes it to a file. The file path is made using stringWithFormat: to combine 2 strings. For some reason it will ...
1
vote
1answer
581 views

How do I set the fill character for displaying numbers (Objective C)

I'm trying to format a string to give me 2 characters for a number, no matter what its value. Right now, I have [NSString stringWithFormat:@"%2d:%2d:%2d",h,m,s)]; and for the values 1, 2, 3, the ...
0
votes
1answer
15 views

What's the correct way to escape sqlite format specifiers in a string

What's the correct way to escape sqlite format specifiers in a string? NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd"]; ...
0
votes
1answer
64 views

+[NSPredicate predicateWithFormat] substitute reserved words

Is it possible to substitute reserved words, specifically OR and AND, into a predicateFormat? I tried: NSString *andOr = (isAnd ? @"AND" : @"OR"); // isAnd is a BOOL variable NSPredicate *predicate ...
0
votes
1answer
56 views

NSString stringWithFormat Percent Sign

I searched and could not find this answer... If I have this, how can I get it to display the final % symbol? It just omits it in my label. [NSString stringWithFormat:@"Tries %i%", tries];
0
votes
3answers
83 views

What does stringWithFormat:@“%@-1” mean?

I'm reading someone elses code and they are using %@-1 to format an integer. I can't find anything on Google since it ignores symbols. Anyone else had more experience at string formatting than me? ...
0
votes
2answers
44 views

Using stringWithFormat for query setup

Not entirely sure why this isn't working. sqlite3 *db; sqlite3_open([databasePath UTF8String], &db); NSString *query; NSNumber *start = (*cur_page * 50) - 50; query = [NSString ...
0
votes
2answers
115 views

Weird leaks in UIPickerView methods

Building a custom UIPickerView for so I can let my users select time as 24 hours without having to go into the Settings app and turn on 24 hour time for the entire phone. Got some stubborn leaks of a ...
0
votes
2answers
148 views

stringWithFormat Bad Access error

Can anyone explain why this code works perfectly: int thumbnailPrefix = trunc([newGraph.dateCreated timeIntervalSinceReferenceDate]); newGraph.thumbnailImageName = [NSString ...
0
votes
4answers
111 views

Objective-C difference in concatentation methods

Clarification question here. I was originally attempting to concatenate two strings using the stringByAppendingString method: NSString *dataString = @","; NSInteger i = 0; NSString *cycleCountString ...
0
votes
3answers
399 views

how to change the color of text in string when I use stringWithFormat function?(iphone)

I am using this in a project, lblDetail.text =[NSString stringWithFormat:@"%@:%@",lblName.text,lblDetail.text]; in this lblName and lblDetail are both different strings, Now I want that when I show ...
0
votes
1answer
237 views

stringWithFormat and %S problem

Here is my code. std::wstring sourceString = L"test\n newline."; NSString* transformedString = [NSString stringWithFormat:@"%S", sourceString.c_str()]; I intended two strings' contents to be same ...
0
votes
4answers
376 views

how to use stringWithFormat to dynamically add hyphens into my string

Hi just wondering if it is possible, as the user is entering a string of numbers to dynamically add a hyphen every 5th character of the string... any help would be greatly appreciated.
0
votes
2answers
385 views

When to release a transient NSString StringWithFormat?

Please help a newbie to iPhone development. In my app, I do this a lot, and Instruments shows it as a leak. What is the right way to do this? I am trying to reformat numeric data as a string for ...
0
votes
3answers
210 views

How to split a string?

I have a string made of three strings like this NSString *first = ..; NSString *second = ..; NSString *third = ..; NSString joinedString; joinedString = [NSString stringWithFormat:@"%@ - %@ (%@)", ...
0
votes
0answers
85 views

Suppressing unnecessary zeros

I would like to make a string with stringWithFormat from a double value, without the unnecessary zero at the end. Examples: [NSString stringWithFormat:@"%.8f",2.344383933]; [NSString ...
0
votes
3answers
1k views

How to convert a CGFloat to an unsigned integer

I am trying to get a string using a CGFloat, something like this.. helpMessage = [NSString stringWithFormat:@"The unsigned integer value is %i", (unsigned int)myCGFloat]; This does not want to ...
0
votes
3answers
174 views

Problem casting an int as a NSString

I am working on an iPhone app that is using some urls and I am running into difficulty appending ints onto the end of them. I have the following line of code NSURL *urlCards = [[NSURL alloc] ...
0
votes
2answers
365 views

NSMutableString stringWithFormat

I have java code that prepares a message for a MD5 munge private static char[] jimsCopyRight = { 'C', 'o', 'p', 'y', 'r', 'i', 'g', 'h', 't', ':', ' ', 0xa9, ' '}; which is used in ...
0
votes
1answer
460 views

Invalidate NSTimer not working

I am have created a timer where I convert the remaining time to a string with a format of:"mm:ss" and when the string value of the time is 00:00 I would like to invalidate the timer. For some reason ...
0
votes
4answers
280 views

Reusing NSMutableString correctly on the iPhone

Using objective-c on the iPhone, what is wrong with this code? Is it leaking memory? Why? How would I do this correctly? NSMutableString *result = [NSMutableString stringWithFormat:@"the value is ...
0
votes
1answer
556 views

Monotouch stringWithFormat using a URL

I'm trying to learn the MapKit with Monotouch and I'm having difficulty figuring out how to search for an address. I finally found this snippet of Objective-C code that might help but it has a line ...
0
votes
1answer
987 views

openURL: with a NSURL containing a formatted NSString isn't working

To open Google Maps with directions, i'm using a formatted NSString inside a NSURL. But it doesn't work with [[UIApplication sharedApplication] openURL:nsurl]; code: NSString * directionsURL = ...
0
votes
2answers
3k views

Displaying numeric value in label area of iPhone using stringWithFormat

I am new to Objective C and the iPhone SDK, and am trying to figure out the following as a simple example of displaying a numeric result in a label area: label.text = [NSString stringWithFormat: ...
-2
votes
2answers
45 views

stringwithformat issue in string searching

I did following experiment. Can any one point out why strings initialized with stringwithformat fail in string searching? NSString *test1 = @"Hello"; NSString *test2 = @"Hello"; NSString ...