从目标c中的NSPoint数组中获取点值

时间:2012-02-17 22:10:30

标签: objective-c

我有一个带有NSPoints的数组。如何从该数组中获取第一个元素值

2 个答案:

答案 0 :(得分:0)

[nsarray objectAtIndex:0]如果是NSArray

array[0]如果它是一个普通的C数组。不是那么难,不是吗?

答案 1 :(得分:0)

有了这么少的信息,我只能猜出你的声明。

NSPoint *point = [arrayInstance objectAtIndex:0];