从函数返回 CGAffineTransform

发布于 2024-11-03 21:54:55 字数 372 浏览 0 评论 0原文

我有一个实例方法,我想返回 CGAffineTransform。我目前收到错误

Semantic Issue: Initializing 'CGAffineTransform' (aka 'struct CGAffineTransform') with an expression of incompatible type 'id'

我的方法名称

- (CGAffineTransform)getEllipse

我对它的调用

CGAffineTransform t = [self getEllipse];

任何帮助都会很棒。

I have a instance method that I'd like to return a CGAffineTransform. I'm currently getting the error

Semantic Issue: Initializing 'CGAffineTransform' (aka 'struct CGAffineTransform') with an expression of incompatible type 'id'

My method name

- (CGAffineTransform)getEllipse

My call to it

CGAffineTransform t = [self getEllipse];

Any help would be great.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

酒绊 2024-11-10 21:54:55

您是否确保该方法在调用它的代码可见的地方声明?即,如果:

- (CGAffineTransform)getEllipse;

在 MyFoo.h 中,并且 MyBar.m 包含:

CGAffineTransform t = [self getEllipse];

则 MyBar.m 需要 #import "MyFoo.h"。在无法看到声明的情况下,调用代码将假定该方法返回未知类型的对象,即 id

Have you made sure that the method is declared somewhere visible to the code that calls it? I.e., if:

- (CGAffineTransform)getEllipse;

is in MyFoo.h, and MyBar.m contains:

CGAffineTransform t = [self getEllipse];

then MyBar.m needs to #import "MyFoo.h". Without being able to see the declaration, the calling code will assume that the method returns an object of unknown type, a.k.a. id.

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