从Objective-C中的方法返回CGPoint

时间:2014-12-16 18:24:36

标签: objective-c

我有以下代码:

#import <Foundation/Foundation.h>


@interface BBUtils : NSObject
{

}


-(CGPoint ) randomPoints;

@end

由于某种原因,它抱怨randomPoints方法说预期类型?为什么呢?

2 个答案:

答案 0 :(得分:3)

如果CoreGraphics不可用,可能会发生这种情况。然后你需要明确地链接它:

enter image description here

答案 1 :(得分:1)

在标题中添加适当的导入以显示CoreGraphics声明的结构:

#import <CoreGraphics/CoreGraphics.h>