方法调用问题

发布于 2024-10-27 02:15:06 字数 251 浏览 0 评论 0原文

我有这个方法:

-(void)reportAchievementIdentifier: (NSString*) identifier percentComplete: (float) percent

现在我想在另一个方法中调用这个方法,例如:

[self thisMethod];

但是如何使用其中包含本地声明的方法来执行此操作?

谢谢

i've got this method:

-(void)reportAchievementIdentifier: (NSString*) identifier percentComplete: (float) percent

now I want to call this method in another method like:

[self thisMethod];

But how can I do this with a method that has local declarations in it?

thank you

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

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

发布评论

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

评论(1

看轻我的陪伴 2024-11-03 02:15:06

方法中是否有本地声明并不重要,这是完全正常的。您是否尝试过调用[self thisMethod];?它会崩溃吗?

It doesn't matter if a method has local declarations in it, that's completely normal. Have you tried calling [self thisMethod];? Does it crash?

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