Here is my code
When I run the app... I can see the block where text should be... but no text written? Anyone else having this issue?
Code:
CGRect textFrame = CGRectMake(70, 25, 250, 30);
UITextView *textView = [[UITextView alloc] initWithFrame:textFrame];
[textView setTextColor:[UIColor whiteColor]];
[textView setFont:[UIFont systemFontOfSize:12]];
textView.text = @"Hello World";
[textField setBackgroundColor:[UIColor blackColor]];
When I run the app... I can see the block where text should be... but no text written? Anyone else having this issue?