在Xamarin.iOS中,方法CVPixelBuffer.GetAttributes具有NSDictionary类型的参数“attributes”。例如,可能会这样调用:
myPixelBuffer.GetAttributes(myAttributesDictionary);
这没有任何意义。 获取功能是不是要获得所需的值?为什么我的签名要求我在中传递值?为什么这个方法没有0参数,如:
myAttributesDictionary = myPixelBuffer.GetAttributes();
???
答案 0 :(得分:1)
CVPixelBuffer.GetAttributes绑定带有一系列字典的本机函数CVPixelBufferCreateResolvedAttributesDictionary 。