【发布时间】:2014-08-21 10:46:01
【问题描述】:
addCloudOne 是 Food 类中的一个方法。以下代码会导致崩溃并出现以下错误:
+[Food addCloudOne]:无法识别的选择器发送到类 0x1000ad760
SEL selector = @selector(addCloudOne);
[NSTimer scheduledTimerWithTimeInterval:k1 target:[Food class] selector:selector userInfo:nil repeats:YES];
你有什么想法吗?
【问题讨论】:
-
你应该给
instance参考而不是class作为目标addCloudOne可能是instance method!
标签: objective-c selector nstimer