I am trying to create a simple fact or joke app. It's simply not working. How do I get the UITextView to load a string, which is stored in an NSArray. Here is my code so far.
// Do any additional setup after loading the view, typically from a nib.
NSArray *list = [[NSArray alloc] initWithObjects:@"fact1",@"fact2",@"fact3",nil];
NSUInteger *count = 0;
textView.text = @"%@", [list objectAtIndex:count];