Method on the class NSString in Apple's Cocoa framework; takes a printf-style format string and a variable number of other arguments to create an instance of NSString.

learn more… | top users | synonyms

1
vote
2answers
57 views

enum in stringWithFormat provokes incompatible pointer type warning

I have an enum property: typedef enum syncCodeTypes { kCodeNull, kCodeFoo, kCodeBar, kCodeDone } syncCodeType; //... @property syncCodeType syncCode; I use it in a ...
0
votes
1answer
108 views

“Format string is not a string literal (potentially insecure)” [duplicate]

I'm using Xcode 4.6. My app is working on the device and the simulator, but I get a warning when building: "Format string is not a string literal (potentially insecure)" from this code [sArray ...
1
vote
2answers
39 views

locationManager avoid (null) string in a Label

I have some code that find the user location and return it into a Label. In some case, the subAdministrativeArea is not available or the thoroughfare and I want to modify my string so it doesn't show ...
1
vote
2answers
58 views

StringWithFormat For int Value Has One Issue

I currently have an int value that is custom formatted and displayed in a label. The int value is always a 5 digit number and I display it with a + symbol between the tenths and hundredths place. If ...
1
vote
1answer
59 views

How to customize a method like 'stringWithFormat'?

I want to customize a method with formated string input and (const char *) return,but the problem is like below... Can anyone tell me how to resolve it? Thanks.
1
vote
1answer
89 views

`size_t` in NSString stringWithFormat

i have a size_tvariable i would display in a NSLog. This variable contains the number of bytes sent. if i use this: NSLog(@"%zu",myvariable); i have no error message but the number overflows and the ...
0
votes
0answers
57 views

ARC , attach char* to label.text through stringWithFormat , the 'live bytes' grows little by little till crash

I'm using ARC . .h file @property (weak, nonatomic) IBOutlet UILabel *label; - (IBAction)OnButtonClick:(id)sender; .m file - (IBAction)OnButtonClick:(id)sender { char *example = "testabcdef"; ...
4
votes
2answers
91 views

How to right pad a string using stringWithFormat

I would like to be able to right align a string using spaces. I have to be able to use the stringWithFormat: method. So far I have tried the recommended format and it does not seem to work: [NSString ...
1
vote
3answers
124 views

Append to beginning of NSString method

I would like to append NSString A in front of NSString B. Is there a built in method to append to the beginning of a NSString instead of the end of the NSString? I know that I can use ...
-3
votes
5answers
76 views

How to specify Formatted NSString constants

I have some predefined string formats that I would like to fill values to, at runtime, and present to the user. I want to store them as either constants or defines, whichever suits better. Something ...
2
votes
4answers
164 views

How to Format Numbers Without Scientific Notation or Decimals

My objective is to create a customer calculator application for iPhone and am using Xcode to write my application. My problem that I cannot find a solution for is how to format a number without using ...
1
vote
0answers
123 views

ARC stringWithUTF8String memory increase “Live Bytes” [closed]

I'm using ARC , if call the below code many many times. I find the "Live Bytes" will increase per 10k.there must have memory leak here. char* example = (char *)sqlite3_column_text(compiledStatement, ...
1
vote
2answers
227 views

Why %@ behave differently between predicateWithFormat and stringWithFormat?

With predicateWithFormat, %@ becomes surrounded by "". We need to use %K for keys. For example [NSPredicate predicateWithFormat @"%@ == %@" ,@"someKey",@"someValue"] becomes "someKey" == ...
-1
votes
3answers
158 views

Converting objective c method to c# stringWithFormat:@“%@%.0f%@”

Okay, I am working on converting some objective c code to c# here is what I have. NSTimeInterval now = [[NSDate date] timeIntervalSince1970]; NSData * formattedstring= [[NSString ...
0
votes
3answers
157 views

dynamic string format with NSString stringWithFormat

I've been trying to make a dynamic string format so that through user options precision or padding could be somewhat user defined. An example includes, the padding of leading zeros as in the 24hour ...
3
votes
2answers
123 views

NSString stringWithFormat return type, why is it “id”?

Why does the method [NSString stringWithFormat] return an id type? From the name I'm expecting it returns a NSString, not a generic pointer. Other classes follow this "rule". For example [NSNumber ...
0
votes
1answer
49 views

Syntax Help Required (use of a string variable)

I'm doing something slightly or monumentally wrong. I want to swap a UIColour for a programmable variable, for example: NSString *DataColourTitle = @"greenColor"; [[UINavigationBar appearance] ...
1
vote
1answer
180 views

Transform NSInteger to NSString as a 5-digit number

I have an int and I transform it to a NSString like this: NSString *myStr = [NSString stringWithFormat:@"%d",myInt]; myInt is ranged from 0 to 99999. What I want is to get myStr as a 5-digit ...
0
votes
2answers
216 views

UITextView remove last entered text

I have a UITextView being passed text by several different UITextFields on IBAction . textView.text = [NSMutableString stringWithFormat:@"%@ %@", textView.text,textField1.text]; I'm trying to ...
2
votes
2answers
389 views

StringWithFormat returning non-NSString

I have a problem with StringWithFormat not working. The debugger says the returned string is not an NSString (and it is not null), thus my calls with the supposed NSString will not match a method ...
-3
votes
2answers
204 views

NSString vs %i with stringWithFormat

Ok I am not sure how or why this is working but if someone could explain this to me it would be greatly appreciated. I am debugging an iPhone app and Xcode gives me the following warning, which is ...
2
votes
4answers
169 views

iPhone: How many digits should be after a dot of a float

I´m trying to set the number of digits of a float with a segmented control. So I've created an segmented control with "0", "1", "2" and "3". I want to set the digits after the comma with a variable ...
0
votes
0answers
80 views

stringWithFormat UIMemuItem memory leak

I have the following code - (void) showMenu { NSMutableArray* arr = [[NSMutableArray alloc] init]; NSString* s = [NSString stringWithFormat:@"Fmt %@", @"s1 blabla"]; NSLog(@"ptr 1 = ...
0
votes
2answers
78 views

Problems with searching and concatenating NSString [closed]

I'm programming a little web browser. I take a NSString from a textbox and then i check it to be sure it has the "http://" before the address, if it does not exist, I attach it to the head of the ...
0
votes
4answers
164 views

How to check if NSString format contains the same number of specifiers as there are variadic arguments?

To ensure that a formatted string returned by NSString initWithFormat:arguments: is as expected, I need to determine if there are the same number of format specifiers as arguments. Below is a ...
0
votes
3answers
90 views

Strange BAD_EXC_ACCESS when declaring a string

Okay, all I am doing is setting an NSString to a value with this code: NSString *stringURL = [NSString ...
0
votes
2answers
356 views

How to localize a string with formatting placeholders?

I need to translate text in controller.body My code: controller.body = [NSString stringWithFormat:@"\n\n" "Label 1: %@ \n" ...
1
vote
3answers
1k views

iOS - stringWithFormat change part of the text color

I'm pulling in tweets for my application and I want to be able to format my tweets in a certain way and color. For example, here would be a simple tweet... "@somename This is a sample tweet from ...
0
votes
1answer
111 views

save substring from a string in Objective-C [closed]

i am having a string like: funcname("data"),comes from upstairs.now i want to save the funcname, data in two NSString variables i.e i need to find the string present in between "" and the string ...
1
vote
1answer
262 views

NSStringWithFormat Crash

Simply stated, the following code has me baffled as to why it should fail. // This line works NSString * string = [NSString stringWithFormat:@"%lu",[[NSDate date] timeIntervalSince1970]]; // This ...
0
votes
1answer
239 views

How to make an if statement change a text field in xcode?

Okay, so I'm trying to make this action change a user-editable textfield if the textfield is empty. This is the code i'm using right now, but it won't work: if ([textField.text ...
0
votes
1answer
70 views

Can't figure out an error with stringWithFormat

I'm having a really basic problem with NSString stringWithFormat. I want to take the name that the user enters and display in an alertView: Welcome username. NSString *welcomeMessage = [NSString ...
-1
votes
2answers
148 views

stringWithFormat : 5 parameters?

why are we using here 5 parameters for stringWithFormat : return [NSString stringWithFormat:NSLocalizedString(@"LatLongFormat", @"LatLongFormat"), fabs(self.coordinate.latitude), latString, ...
0
votes
2answers
97 views

EXC_BAD_ACCESS in objective c

Could someone help me with code below? Randomly get EXC_BAD_ACCESS in this loop. I guess there something wrong with [NSString stringWithFormat:....], but don't understand why and don't know how to ...
1
vote
3answers
1k views

iphone NSString stringWithFormat and float

I have an input with UIKeyboardTypeDecimalPad and I need my user to input a float (with unlimited characters after a dot). After the input I filter the string with : NSString *newValue = [NSString ...
0
votes
1answer
200 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"]; ...
3
votes
4answers
438 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 ...
1
vote
1answer
2k 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 ...
2
votes
2answers
3k 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]; ...
1
vote
3answers
168 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 ...
-2
votes
2answers
98 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 ...
2
votes
1answer
1k 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
854 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
101 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
584 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 ...
1
vote
2answers
835 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 ...
0
votes
2answers
462 views

stringWithFormat Bad Access error

Can anyone explain why this code works perfectly: int thumbnailPrefix = trunc([newGraph.dateCreated timeIntervalSinceReferenceDate]); newGraph.thumbnailImageName = [NSString ...
4
votes
2answers
272 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 ...
0
votes
4answers
381 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
3k 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 ...

1 2