Obj-C...“初始化中的不兼容类型”错误

发布于 2024-08-03 09:55:52 字数 111 浏览 1 评论 0原文

我的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅忆 2024-08-10 09:55:52

CGPointMake 返回一个结构体,而不是指向结构体的指针。所以正确的代码是:

CGPoint tp_1 = CGPointMake(160, 240);

CGPointMake returns a struct, not a pointer to a struct. So the correct code is:

CGPoint tp_1 = CGPointMake(160, 240);
不一样的天空 2024-08-10 09:55:52

看起来 CGPointMake 没有返回指针。

Looks like CGPointMake isn't returning a pointer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文