does anyone know how to display a number on the screen/iphone simulator? I can load the data and create a x/y graph. Now instead of showing the graph, I load the data value from a text file, and I want to display the number on the screen. Does anyone know what function i can use?
NSString *data =[myText objectAtIndex:i];
output_data_value_to_the_screen(i);
so now let's say data = 1
, i want to display the value of the data
which is 1 on the screen. if I change the data value of myText to '2', now data = 2 so that 2 will be displayed on the screen instead of '1' ;