在对象字符串之前期望标识符:(

时间:2010-01-23 20:22:23

标签: iphone-sdk-3.0

我正在尝试正确格式化这一行,但到目前为止,我没有在哪里:

NSString *urlAddress = selectedCell.@"html";

selectedCell是选择的类别,

IBOutlet UILabel *selectedCellText;
NSString *selectedCell;

如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

修正了它,

NSString *urlAddress = [[NSBundle mainBundle] pathForResource:selectedCell ofType:@"htm"];