0

我正在尝试创建一个简单的事实或笑话应用程序。它根本不起作用。如何让 UITextView 加载存储在 NSArray 中的字符串。到目前为止,这是我的代码。

// 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];
4

1 回答 1

1

尝试这个 :

textView.text = [NSSTring stringwithFormat:"%@",[list objectAtIndex:0]; 

或者

textView.text = [list objectAtIndex:count]; 
于 2013-10-23T22:36:14.153 回答