0
votes
1answer
31 views

Obtain array objects with specific value

What I want to do is to return the NSArray objects of a specific value (numbers). How can I do it? Thanks in Advance
0
votes
1answer
111 views

Round float values accurately with output required decimal point in Objective-C [closed]

How to round a float value like 1.449567 accurately. The output value should be required decimal point floate value. Output should be like this: for 1 decimal point **f=1.5** for 2 decimal point ...
0
votes
4answers
64 views

UILabel: adding 1 to a number when button pressed? [closed]

I am fairly new to this, I would really like some help on how to change a UILabel to add 1 to the previous number, everytime a the button is pressed. I.E i want it so when I press the button the ...
-2
votes
2answers
56 views

How to modify number using NSNumberFormatter? [closed]

I have values such as: 5.1M (5100000) 80M (80000000) 300.5M (300500000) 5K (5000) 2000K (2000000) 200.5K (200500) (Values I need to turn them into are in parenthesis behind the numbers). ...
3
votes
2answers
84 views

How to convert numbers into indicative string

I just want to know how can I can convert the numbers 1, 2 or 3 into First, second or Third ? Any help would be appreciated.
2
votes
2answers
92 views

Convert spelled out number to number

Is there a way, in Objective-C/Cocoa, to convert spelled out words to an NSNumber or equivalent in multiple languages? For example: convert three to 3 or convert ocho to 8 (Spanish). Also slightly ...
-1
votes
4answers
58 views

How to count the number of repetitions that while does?

I am doing a year of college and am having MUCH difficulty at a specific point .... I need to make a code that reads the population of the U.S. and Brazil, knowing that the population of the U.S. is ...
0
votes
2answers
69 views

Rounding a float to the nearest value in a pre-determined list?

I have a set list of valid sizes for a UI object on my display (values at which a background image tiles the way I want it to), and I want to take each object's height in turn and round it up to the ...
0
votes
2answers
186 views

Decimal point in calculations as . or ,

If I use decimal pad for input of numbers the decimal changes depending of country and region format. May be as a point "." or as a comma "," And I do not have control over at which device the app is ...
0
votes
1answer
199 views

Convert numbers in Chinese characters to arabic numbers

I am a newbie in programming and i start with Objective C as my first language. I am messing around with some books and tutorials, at last programing a calculator... Everything fine and i am getting ...
4
votes
5answers
100 views

How to find out whether input is number or text in objective-c?

I've tried to search, but I think my google is skill is not good enough, so I'm asking a help from people. I'm scanning through a string and taking each element. I need to find out whether it's number ...
0
votes
2answers
94 views

Objective-C – Transform an array of numbers to arrays with numbers in sequence

Is there an easy way to transform an array of numbers to an arrays with the numbers in sequence? NSArray *numbers = @[@1,@2,@5,@3]; // Transformed arrays //NSArray *numbersInSequence = @[@1,@2,@3]; ...
1
vote
1answer
101 views

How to avoid grouping separator in NSNumberFormater until 5 digits

I have an application that needs to display metric units in millimeters and based on the research that I have done (e.g. http://physics.nist.gov/cuu/pdf/sp811.pdf), it is recommended that you don't ...
0
votes
2answers
97 views

objective c float numer conversion

float f2,f1 = 123.125; what is different between them? float f1 = 123.125,f2; if I write code as float f1,f2 = 123.125 the program will has different result here is the full program ...
1
vote
3answers
541 views

Objective - C Sting formatting just like printf/NSString stringWithFormat

I'm using a commercial third party library that is very restrictive of the formatting of numbers displayed on the screen. the formating can only done by You can customising a String called ...
0
votes
2answers
100 views

Is there any method that can take “one” and return “1”?

I've looked at NSNumberFormatter, but that hasn't worked, so is there a way of parsing written numbers and turning them in to actual numbers?
1
vote
2answers
242 views

UIButton disappears when my application returns from running in the background

I have a small project that contains a few UITextFields with a number keypad. When the keyboard is displayed I'm adding a button as a subview for the user to dismiss the keyboard. However, if the ...
-1
votes
2answers
115 views

Checking input value

I am trying to check whether the user gives an input that is number but not letters. When a non-numeric value is given I want to print an alert error message like "incorrect format". This is my ...
0
votes
0answers
189 views

Get phone number from different formats in objective-c

iPhone saves phone numbers in different format based on localization. I need to convert a phone number stored in Address Book, to a specific format. Here an example of US formats: +1 (###) ###-#### ...
1
vote
2answers
155 views

Dynamic Version Numbering in a Default.png

I have a Default.png which includes a version number on it. Every time I update my app, I have to change it both in the lite and full version's default.png and default@2x.png. Hassle, no? I'm pretty ...
14
votes
3answers
917 views

Objective-C: format numbers to ordinals: 1, 2, 3, .. to 1st, 2nd, 3rd

In Objective C, is there any way to format an integer to ordinals 1 => "1st", 2 => "2nd" etc... that works for any language? So if the user is French he will see "1er", "2ieme" etc.. Thanks a lot! ...
0
votes
2answers
231 views

IOS - how do I reset a number label to zero when a button is pressed?

How would I reset a label back to zero that counts up every time the user taps an image? The current method that I have for it does not work. Here is the code that I believe you will need: int ...
1
vote
2answers
1k views

determine if a string is a number with NSScanner

i'm trying to find out if my string contains any floatValue, and resign the first responder if it's the case, if it's not, the textfield keyboard should stay on screen. This code always hides the ...
0
votes
1answer
222 views

How do I set how many times to run a method? (cocos2d iPhone)

I have a method to add an enemy, and I want to know how I can make it so I run it a certain number of times (say 10). I call the method with a scheduler in cocos2d and by doing [self addEnemy]; Need ...
7
votes
3answers
10k views

Objective-C: Numbers only text field? [duplicate]

Possible Duplicate: Iphone UITextField only integer I want to place a text field that only accepts numbers (0-9, doesn't even need decimals), but even using the "Number Pad" entry option I ...
5
votes
3answers
276 views

Is there an Objective-C method that takes a number and spells it out?

I'm looking for something that takes a number (say 5 or 207) , spells it out, and returns its ordinal form as a string (five or two hundred seven) . I've looked on Google but all I could find was ...
0
votes
1answer
163 views

Having Trouble Converting from lbs to kgs

My app has a picker that has numbers with suffix of lbs. I want to add support for user to be able to use kgs instead. So I tried using this: NSNumber *weightInPounds = [pickerArray ...
0
votes
2answers
1k views

Get NSArray index number

self.listData = [NSArray arrayWithObjects:@"A",@"B",@"C", nil]; How can I get index numbers for listData items? This code below is used to get listData items string: c = [NSString ...
1
vote
2answers
334 views

formatting negative currency amount in objective-c

I have trouble formatting negative amounts. I have defined the following formatter : NSNumberFormatter *nf = [[NSNumberFormatter alloc] init]; [nf setNumberStyle:NSNumberFormatterCurrencyStyle]; [nf ...
2
votes
5answers
6k views

Determine if NSString's first character is a number

I just wanted to know how i can determine whether a NSStrings first character is a number.
3
votes
6answers
402 views

Problem randomizing number in Objective-C

I am trying to generate a random number between 0 and the size of my array: float randomNum = (rand() / RAND_MAX) * [items count]; NSLog(@"%f",randomNum); NSLog(@"%d",[items count]); ...
0
votes
2answers
396 views

Randomly shuffling a number sequence

I need help in randomly arranging number sequence in Obj-C for example, 1-4, it'll be 3,1,2,4 or 1,4,3,2. I know it involves this function arc4random(). Any suggestions/tips?
1
vote
2answers
691 views

adding zeros in objective-c string formats

Quick question: I am trying to fill in empty spaces with a specific number of zeroes in an NSString stringWithFormat formatting string. For example, I want: @"The number is %d", 5 // I want this to ...
3
votes
4answers
3k views

How to convert a double to NSInteger?

Very simple question here. I have a double that I wish to convert back to a NSInteger, truncating to the units place. How would I do that?
0
votes
1answer
71 views

How To Count Objects In Header File?

novice Objective-C programmer here. Could you please tell me a way to count the number of objects in the header file that I've provided properties for? I've declared several arrays and I don't want ...
0
votes
1answer
1k views

Telephone number format should be international,Is there any Regex for phone number validation in iPhone

Telephone number should be international and user has to enter the complete phone number with country code. For that I need a regex for formatting the phone number.
1
vote
2answers
644 views

How can show arabic numbers in label

How can show arabic numbers in label? better is i say how can i convert en numbers to arabic numbers. like ۱و۲و۳و... iphone
0
votes
1answer
666 views

Cocoa/Objective C: Convert numbers to strings using Japanese unicode characters

Converting numbers to strings is no problem, but the string created uses ascii numbers. I am inserting the number in a Japanese sentence. The character itself is correct, say 3, for example, but the ...
0
votes
1answer
573 views

Objective C - Number to String and Grab length inconsistencies

I am trying to grab a number from a text box entry, convert it to string and grab the length of it. (IE: Perform a LEN(someInteger) on a number). I have been able to get it working, however there ...
1
vote
1answer
1k views

Remove extra zeros when converting a double to a string in Objective C

So when I convert a double to a string using something like this: double number = 1.1; text = [[NSString alloc] initWithFormat:@"%f", number]; The variable text ends up printing something like ...
3
votes
2answers
691 views

How do I create a Numbers spreadsheet using objective-c?

I'm writing a Cocoa application and I'd like to generate a Numbers spreadsheet from my application using Scripting Bridge. I've generated the Numbers.h file and linked the ScriptingBridge.framework ...
0
votes
2answers
329 views

obj-c : iphone programming disabling the round off of a number

i need to show a number to a user : 1.96666777 (timeHour) moduloformat = [NSString stringWithFormat:@"%0.0f hours ",timeHour]; but it is rounding off the number automaticly. It gives "2" and i want ...
1
vote
2answers
82 views

iPhone Game Having a statement checked every 50 points

I've run into a little hurdle and wanted to see if somebody could help me! I want to write an algorithm for an if statement that says: if (for every 50 points) { //do something } I thought += 50 ...
0
votes
0answers
142 views

comparison between point and integer

Right, basically I want to add two numbers together. It's for a working hours calculator and I've included parameters for a night shift scenario as an if statement. However, it now mucks up the day ...
5
votes
6answers
6k views

Random number in iphone sdk?

How do you generate a random number when a button is clicked, and depending on that number, different actions take place. I probably only need a random number from 1-10. -(IBAction)buttonClicked{ ...
2
votes
2answers
879 views

Exporting data to iWork Numbers

Has anyone tried exporting data to Numbers in iWork? I want to generate a spreadsheet programmatically but I'm not having much success. I've tried unzipping a .numbers document and analysing the XML ...
1
vote
1answer
307 views

String to int - cocoa, objective-c

I'm trying to get a value from a NSTextField (Label) and convert it to a int... minFormatter = [[NSNumberFormatter alloc] init]; [minFormatter setNumberStyle:NSNumberFormatterNoStyle]; NSNumber ...
0
votes
1answer
310 views

Getting Numbers From A CFDictionary For Use In Calculations, iPhone

I found this in my travels: http://www.opensource.apple.com/source/IOKitUser/IOKitUser-502/ps.subproj/IOPSKeys.h How would I get the values (as a number) of: #define kIOPSMaxCapacityKey "Max ...
3
votes
2answers
2k views

Questions about validating user input in Objective-C, number vs string

Why 'exactly' does this code loop endlessly if you enter a non number character? The first question comes about because I want to learn good defensive coding. Does anyone know a good way to check ...
5
votes
3answers
8k views

How to verify input in UITextField (i.e., numeric input)

I am fairly new to iPhone development and I have what seems to be a simple question that I cannont figure out. How can I verify that a user input a number and a decimal into the text field? I have ...

1 2