0

在 Xamarin.iOS 中,方法 CVPixelBuffer.GetAttributes 有一个 NSDictionary 类型的参数“属性”。例如可能会这样调用:

myPixelBuffer.GetAttributes(myAttributesDictionary);

这是没有意义的。Get函数的目的不是获取所需的值吗?为什么它的签名要求我传入一个?为什么这个方法没有0个参数,如:

myAttributesDictionary = myPixelBuffer.GetAttributes();

???

4

1 回答 1

1

CVPixelBuffer.GetAttributes 绑定本机函数CVPixelBufferCreateResolvedAttributesDictionary,该函数采用字典数组。

于 2016-01-29T11:14:51.670 回答