Obj-C...“初始化中的不兼容类型”错误
我的代码:
CGPoint *tp_1 = CGPointMake(160, 240);
给出“初始化中的类型不兼容”错误...这是为什么?
My code:
CGPoint *tp_1 = CGPointMake(160, 240);
gives an "Incompatible types in initialization" error... why is this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
CGPointMake 返回一个结构体,而不是指向结构体的指针。所以正确的代码是:
CGPointMake
returns a struct, not a pointer to a struct. So the correct code is:看起来 CGPointMake 没有返回指针。
Looks like CGPointMake isn't returning a pointer.