iphone - how to display a number on text view which was stored in variable -
I want to display a number assigned to the variable on the text view ... to show the number on the text view < / P>
myTextView.text = [NSString stringWithFormat: @ "% d", your number variable]
You should adjust "% d" according to the type of variable.
Comments
Post a Comment