我实际上开始失去生命的意志了,这个代码片段让我发疯!
我试图获得数学内容。 into
我正在使用一个数组,它是:
-(void)loadText
{
NSArray *wordListArray = [[NSArray alloc] initWithArray:
[[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@”mathspractice” ofType:@”txt”]
encoding:NSMacOSRomanStringEncoding error:NULL] componentsSeparatedByString:@”
”]];
self.theMathsPractice = wordListArray;
[wordListArray release];
}
然后我尝试将它传递到*我的标签中
UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0,100,960,40)];
myLabel.text = *theMathsPractice;
[myScrollView addSubview:myLabel];
[myLabel release];
}
谁能帮助?