在用Swift重写一个开源边栏菜单,但是遇到个问题,就是
vImageBoxConvolve_ARGB8888(&effectInBuffer, &effectOutBuffer, NULL, 0, 0, (uint32_t)radius, (uint32_t)radius, 0, kvImageEdgeExtend);
这样的语句,用Swift不知道怎么写。虽然搜到了一个类似问题
http://stackoverflow.com/questions/24110769/how-to-correctly-initialize-an-unsafepointer-in-swift ,但是 withUnsafePointer(&arg: T, body: (UnsafePointer<T>) -> Result) 这里有个闭包不知道如何写。
在
https://github.com/rnystrom/RNFrostedSidebar/blob/master/RNFrostedSidebar.m第99行。
感谢。
.js