【发布时间】:2010-10-05 02:01:25
【问题描述】:
我有一个 plist,其根类型为字典,其中包含数组类型的键,每个数组都有三个字符串类型的项。
我想访问字符串并将它们传递给视图控制器。
这一行在我的 cellForRowAtIndexPath 中是成功的
NSLog(@"Strings from plist: %@", [[self.aDictionary objectForKey:(@"%@",[self.keys objectAtIndex:row])] objectAtIndex:0]);
当我在 didSelectRowAtIndexPath 方法中放入同一行时,我收到 BAD_ACCESS 错误。
任何关于如何获取字符串的建议都会有所帮助。
这是我的.plist
<dict>
<key>Derivative</key>
<array>
<string>Derivative 1</string>
<string>front.png</string>
<string>back.png</string>
</array>
<key>Rolle's Theorem</key>
<array>
<string>Rolle's Theorem 1</string>
<string>front.png</string>
<string>3bk.png</string>
</array>
<key>Chain Rule</key>
<array>
<string>Chain Rule</string>
<string>chainrule1.png</string>
<string>chainrule1_bk.png</string>
</array>
</dict>
</plist>
这里有两种方法:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
NSUInteger row = [indexPath row];
cell.backgroundColor = [UIColor purpleColor];
cell.textLabel.textColor = [UIColor blackColor];
cell.textLabel.text = [self.keys objectAtIndex:row];
// Key output to NSLOG accessing elements from the plist
NSLog(@"Strings from plist: %@", [[self.aDictionary objectForKey:(@"%@",[self.keys objectAtIndex:row])] objectAtIndex:0]);
cell.textLabel.font = [UIFont fontWithName:@"Verdana-Bold" size:18.0];
cell.textLabel.numberOfLines = 2;
cell.selectedBackgroundView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"TableCell_BG.png"]] autorelease];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
NSUInteger row = [indexPath row];
NSLog(@"Row selected was: %i", row);
// Key output to NSLOG accessing elements from the plist
//NSLog(@"Strings from plist: %@", [[self.aDictionary objectForKey:(@"%@",[self.keys objectAtIndex:row])] objectAtIndex:0]);
/*
NSString *selectedCard = [[aDictionary objectForKey:(@"%@",[keys objectAtIndex:row])] objectAtIndex:0];
NSLog(@"Showing Flash Card: %@", selectedCard);
*/
FlashCardViewController *flashVC = [[FlashCardViewController alloc] initWithNibName:@"FlashCardViewController" bundle:nil];
id aKey = [keys objectAtIndex:row];
flashVC.aSelectedCard = [[aDictionary objectForKey:aKey] objectAtIndex:0];
[self.navigationController pushViewController:flashVC animated:YES];
[flashVC release];
}
【问题讨论】:
-
您错误地访问了 indexPath 的行变量。看看我的帖子,它会告诉你如何摆脱 EXC_BAD_ACCESS 错误
-
NSUInteger row = [indexPath row];那不应该工作它应该是 NSUInteger row = indexPath.row;这有效,应该消除错误。我只是自己尝试过,我没有收到任何错误
标签: iphone nsstring nsarray plist nsdictionary