iphone计时器plist文件显示

时间:2012-03-08 00:51:07

标签: iphone objective-c

我将再次提出这个问题,我以为我已经弄明白了,但我猜不是。这是一个计时器应用程序,它从plist文件中获取计时器信息。一切正常但我希望.plist扩展名不会显示在我的tableview中。以下是我认为是问题的两个代码片段。它们位于名为NSArray *files;

的数组中
self.files = [[NSBundle mainBundle] pathsForResourcesOfType:@"plist" inDirectory:@"Timers1"];

// Configure the cell.

cell.textLabel.text = [[files objectAtIndex:indexPath.row] lastPathComponent];
return cell;

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

NSString *text = [[files objectAtIndex:indexPath.row] lastPathComponent];
text = [text substringToIndex:[text rangeOfString:@"."].location];
cell.textLabel.text = text;