0
這是一個例行練習。我在當前的項目中做過很多次,並且它工作得很好。我複製了代碼行,相同的初始化。我的plist數據進入一個字典,但不會在其初始化中進入其各自的數組。我有一個名爲initArraysPlistiOS - 從plist中提取數據不起作用
-(void)initArraysPlist{
NSString *path1 = [[NSBundle mainBundle] pathForResource:@"trainerProfile" ofType:@"plist"];
// Load the file content and read the data into arrays
NSDictionary *dict1 = [[NSDictionary alloc] initWithContentsOfFile:path1];
trainerNames = [dict1 objectForKey:@"Names"];
trainerIcons = [dict1 objectForKey:@"Icons"];
trainerFactSheet= [dict1 objectForKey:@"Fact Sheet"];
trainerFocus = [dict1 objectForKey:@"Focus"];
trainerContactInfo= [dict1 objectForKey:@"Contact Info"];
方法}
伊夫這個做了幾次,它目前的工作在我的代碼。所有的值都是正確的。我已經檢查過很多次了。當