0

我收到此警告“从 'id' 分配给 'int' 的整数转换指针不兼容”

在这条线上

_intvalue = [self performSelector:@selector(PostureValueReturn)];

这里 abc 是一种方法

- (int)abc
{
    return 3;
}

并且 _intvalue 是属性

@property (nonatomic, assign) int intValue;

谁能建议我如何摆脱它。

4

1 回答 1

0

-performSelector方法返回类型id。有什么理由你不能直接直接调用该方法吗?

_intvalue = [self PostureValueReturn];
于 2013-06-08T00:46:25.550 回答