Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to grab avalue from a UIPicker which is populated with round numbers, integers pulled from and NSMutableArray. I'm trying to convert the pulled values to an actual int.

I tried this in the .m:

int pickednumber;


......

-(void) pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component{


NSString *numbers = [arrayNumbers objectAtIndex:[pickerView selectedRowInComponent:0]];

pickednumber = [NSString stringWithFormat:@"%d", numbers];

NSLog(@"Picked number %@ ", numbers); 

}

I get the error in the pickednumber = line: Incompatible pointer to integer conversion assigning to 'int' from 'id'. What am i doing wrong?

Message was edited by Sounddesigner on 3/8/12 at 3:05 PM

share|improve this question
2  
Question and title don't seem to match. – newenglander Oct 24 '12 at 8:20

2 Answers

up vote 2 down vote accepted
NSString *intString = [NSString stringWithFormat:@"%d", myInt];

http://forums.macrumors.com/showthread.php?t=448594

Update: My Bad Wrong answer, Barfi has the correct one!

share|improve this answer
That works! Thank you! – Giel Mar 8 '12 at 17:08

NSString has a convinience method to get integer value of a text

do this

pickednumber = [numbers intValue];

NSLog(@"Picked number %d ", numbers);  // not %@ ..%@ is for objects .. not int
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.