- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用此方法并传递一个对象?使用此代码,我收到此错误:
-[myApp hideUpdateView]: unrecognized selector sent to instance 0x8b6a880
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[myApp hideUpdateView]: unrecognized selector sent to instance 0x8b6a880'
它永远不会到达 hideUpdateView 方法...
代码:
NSArray *array = [NSArray arrayWithObjects:@"1", @"2", nil];
[self performSelector:@selector(hideUpdateView) onThread:[NSThread mainThread] withObject:array waitUntilDone:YES];
- (void) hideUpdateView: (NSArray *) inputArray
{
int catCount = [[inputArray objectAtIndex:0] intValue];
//hide it
}
最佳答案
您缺少选择器名称末尾的冒号。 (请阅读 Objective-C 教程。冒号是选择器名称的一部分。)
[self performSelector:@selector(hideUpdateView:) onThread:[NSThread mainThread] withObject:array waitUntilDone:YES];
^
Note the colon here
关于iOS performSelector onThread 与对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12483214/
刚刚在 Apple docs: 中找到 Note: Although good for occasional communication between threads, you should not
是否可以使用此方法并传递一个对象?使用此代码,我收到此错误: -[myApp hideUpdateView]: unrecognized selector sent to instance 0x8b6
我正在尝试使用单独的线程来处理某些 API。 问题是我无法将 performSelector:onThread:withObject:waitUntilDone: 方法与我为此实例化的线程一起使用。
我想创建一个单独的线程来运行自己的窗口。坦率地说,该文档对我来说没有意义。 所以我创建了一个带有 main 函数的 NSThread 。我启动线程,创建一个 NSAutoreleasePool,然后运
在当前的 iOS 应用程序中,我正在使用这种执行选择器方法: [self performSelector:@selector(doSomething) onThread:my
将 NSDictionary 文字作为对象传递给 -performSelector:onThread:withObject:waitUntilDone: 将导致其崩溃,因为其他线程的运行循环的自动释放
我正在尝试调试一些包含以下错误消息的 iOS 崩溃日志: *** Terminating app due to uncaught exception 'NSDestinationInvalidExce
我尝试子类化 NSThread 以便使用一些数据来操作线程。根据文档,我想在 python 中模拟 join() : join(): Wait until the thread terminates.
我有一个关于 C++ pthread 的问题。 如果我有 Thread1 和 Thread2。 有没有办法在 Thread2 上执行从 Thread1 调用的 Thread2 方法? //code e
我有一个 Objective-C 类,它启动一个后台线程并在其上运行一个 NSRunLoop。我想从主线程向后台线程传递消息(是的,专门从主线程)。为此,我计划使用内置的 performSelecto
虽然为此启动我自己的方法并不难,但效率不如 - (void)performSelector:(SEL)aSelector onThread:(NSThread *)thr withObject:(id
苹果Threading Programming Guide指出: Although good for occasional communication between threads, you sho
我是一名优秀的程序员,十分优秀!