我正试图在我的iOS应用程序中将一个字符串从一个类传递到另一个类。我把它设置成这样:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// open a alert with an OK and cancel button
Vimeo *vimeo= [[[Vimeo alloc] initWithNibName:@"Vimeo" bundle:[NSBundle mainBundle]] autorelease];
[self.navigationController pushViewController:vimeo animated:YES];
UITableViewCell *selectedCell = [tableView cellForRowAtIndexPath:indexPath];
vimeo.feedAddress = selectedCell.textLabel.text;
}
如果我不这样做
#import "Vimeo.h"
在这个类的实现中,我收到一个错误,它在Vimeo中找不到属性feedAddress。如果我导入它,那个错误消失了,但在运行时,我得到重复的符号错误。
发生了什么事?
答案 0 :(得分:-1)
确保您的项目中没有两个名为Vimeo.h的文件,或者您没有Vimeo类的两个声明