我在CGPoint上遇到问题,在这里也找不到任何答案,所以我提出了这个问题,我希望在.m文件中可以访问2个变量,但是当我尝试在CGPoint变量中放置一个值时给了我一个“期望的表情”。我是iOS应用开发的初学者,所以我真的不知道该如何解决这个问题,有人可以给我提示吗?我会很感激。这是我要执行的操作的示例代码
在.m文件中:
@interface file()
{
CGPoint sample1;
CGPoint sample2;
}
@implementation file
-(void)viewDidLoad(){
sample1 = {5.0, 8.0}; ->> and this is where I’m getting the “expected expression” error.
sample2 = {4.0, 2.0}; ->> and this is where I’m getting the “expected expression” error.
}
最佳答案
sample1 = CGPointMake(5.0, 8.0);
sample2 = CGPointMake(4.0, 2.0);
关于ios - 在.m文件的@interface中初始化的CGPoint变量不能具有值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31018876/