在 Objective-C 中创建可调整大小的 CGPoints 数组
我正在尝试在 Objective-C 中创建一个可调整大小的 CGPoints 数组。我已经研究过使用 NSMutableArray 但它似乎不允许调整大小。还有其他我可以使用的东西吗?
谢谢
I am trying to create a re-sizable array of CGPoints in objective-c. I've have looked into using NSMutableArray however it doesnt seem to allow resizing. Is there something else I can use?
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
NSMutableArray
,但只需将CGPoint
结构放入NSValue
对象中即可。示例:请注意,
+valueWithCGPoint:
和CGPointValue
方法仅在 iPhone 上可用。但是,如果您在 Mac 上需要此功能,则可以使用类似的方法来处理NSPoint
,并且将CGPoint
转换为NSPoint
也很简单(您可以强制转换或使用NSPointFromCGPoint()
)。Use an
NSMutableArray
, but just box yourCGPoint
structs inNSValue
objects. Example:Note that the
+valueWithCGPoint:
andCGPointValue
methods are only available on the iPhone. However if you need this for the Mac, there are similar methods for dealing withNSPoint
s, and it's trivial to convert aCGPoint
to anNSPoint
(you can cast or useNSPointFromCGPoint()
).NSMutableArray 用于对象。对于普通的旧数据类型,请使用 NSMutableData 和良好的旧指针类型转换。它是一个可调整大小的非结构化内存缓冲区,正是 POD 向量所需要的。至于静态类型安全,Objective C 无论如何都不会给你任何东西。
编辑:
创建一个初始大小为 n CGPoint 结构的可变数据对象:
将 CGPoint pt 放入缓冲区的第 i 个位置:
将 CGPoint 从第 i 个位置检索到 pt:
将数组增长 n 个对象:
希望覆盖它。请参阅 NSMutableData 参考,并记住所有 NSData 方法都适用于它。
NSMutableArray is for objects. For plain old datatypes, use NSMutableData and good old pointer typecasts. It's a resizable unstructured memory buffer, just what you need for a vector of PODs. As for static type safety, Objective C does not give you any of that anyway.
EDIT:
Creating a mutable data object with an initial size n CGPoint structs:
Placing a CGPoint pt into the buffer at the i-th position:
Retrieving a CGPoint from the i-th position into pt:
Growing the array by n objects:
Hope that covers it. See the NSMutableData reference, and keep in mind that all NSData methods apply to it.