0

我试图在 iPhone Simulator 4.0 上运行此代码并得到该错误

//#ifdef __IPHONE_4_0
    UIDevice *device = [UIDevice currentDevice];
    if ([device respondsToSelector:@selector(isMultitaskingSupported)] && device.multitaskingSupported)
    {


    }
//#endif

有没有人以前用模拟器做过多任务处理?请帮我。

非常感谢

东都

4

1 回答 1

1

您是否正在为 4.0 SDK 进行编译?4.0 SDK之前,multitaskingSupported没有定义属性,所以编译会失败。尝试

if ([device respondsToSelector:@selector(isMultitaskingSupported)] &&
    [device isMultitaskingSupported]) {
      ...
}

反而。

于 2010-06-23T12:06:15.997 回答