方法调用问题
我有这个方法:
-(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
方法中是否有本地声明并不重要,这是完全正常的。您是否尝试过调用
[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?