我是(来自java);目标 c 和 xcode 的新手。下面是构建良好但抛出的代码unrecognized selector sent to instance
。我试图通过谷歌搜索来修复它..但没有运气。
if ([segue.identifier isEqualToString:@"myAccSegue"]) {
MyAccountController *destViewController = segue.destinationViewController;
NSString *s = @"avcd";//[_carImages objectAtIndex: (NSUInteger)index.section ];
destViewController.recipeName=s;
}
和 MyAccountController 是:
#import <UIKit/UIKit.h>
@interface MyAccountController : UITableViewController
@property NSInteger index;
@property (nonatomic,strong) NSString *recipeName;
@end
在 MyAccountController.mi 中写道@synthesise recipeName
。当我运行时,我得到了错误
2013-06-29 23:02:28.962 abcd[9171:c07] -[UIViewController setRecipeName:]: unrecognized selector sent to instance 0x7560cc0
一点调试显示 ox7560cc0 属于destinationViewController
. 不知道出了什么问题。。
请问有什么帮助吗?