Straight and to the point:
I'm trying to update the text in a UILabel and I know this code works:
but I only know it works because I saw it done, where can I find the documentation on the setText method for UILabel, I looked at the developer documentation for the UIlabel class here. But i see no mention of setText in it or in any of its inherited classes.
I'm trying to update the text in a UILabel and I know this code works:
Code:
[myLabel setText:@"Hello World"];
but I only know it works because I saw it done, where can I find the documentation on the setText method for UILabel, I looked at the developer documentation for the UIlabel class here. But i see no mention of setText in it or in any of its inherited classes.