Is it possible to set the color of the top-title of a view, ie. the one appearing on top of everything ("Testing" on this image: http://pessoal.org/blog/wp-content/uploads/2009/02/standard-200x300.png)?
Ive tried:
..but no success.
I know Im pointing to the correct title with "self.title" since:
..does in fact change the title to "Dude".
Ive tried:
Code:
self.title = [UIColor lightGrayColor];
// or
self.title.textColor = [UIColor lightGrayColor];
..but no success.
I know Im pointing to the correct title with "self.title" since:
Code:
self.title = @"Dude";
..does in fact change the title to "Dude".