Just got my Pebble, and I am playing around with the SDK. I am new to C, but I know Objective-C. So is there a way to create a formatted string like this?
int i = 1;
NSString *string = [NSString stringWithFormat:@"%i", i];
And I can't use sprintf
, because there is NO malloc
.
I basically want to display an int
with text_layer_set_text(&countLayer, i);
My favorite 2 generic integer to string functions are as follows. The first will convert a base 10 integer to a string, the second works for any base (e.g. binary (base 2), hex (16), oct (8) or decimal (10)):
any base number: (taken from http://www.strudel.org.uk/itoa/)
Since it is done with pointers and without reliance on any C function that would require malloc, then I see do reason it wouldn't work in Pebble. However I am not familiar with Pebble.