Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Argument 1 to method onMicDataByAEReady:data: - Type(^) not supported'
增加新类型支持
- (NSInvocation *)duplicateInvocation:(NSInvocation *)origInvocation
{
……
else if (*type == *@encode(void *))
{
void *value;
[origInvocation getArgument:&value atIndex:i];
[dupInvocation setArgument:&value atIndex:i];
}
else
……
}
网友评论