Xcode 实例方法未找到
有时我会收到警告,例如:
找不到实例方法“-PushBottom”(返回类型默认为“id”)
因为函数 PushBottom 在此函数(调用的位置)下声明。
为了修复此警告,我将函数 PushBottom 放在此函数(它调用的位置)上。
有没有什么方法可以修复此警告,而无需将函数 PushBottom 放在它调用的函数上?
sometimes I get the Warning for example :
Instance method '-PushBottom' not found (return type defaults to 'id')
because the function PushBottom is under this function (where it called) declared.
For fixing this warning I put the function PushBottom about this function (where it called).
Is there any way to get fix this warning without put function PushBottom about the function where it called?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
中声明按钮,
您可以在 .h 文件或
-(IBAction)PushButton:(id)sender;
具体取决于功能是什么。
只需在@end上方的.h文件中声明它,你就可以开始了
you could declare the push button in the .h file
or
-(IBAction)PushButton:(id)sender;
depending on what the function is.
just declare it in the .h file above the @end and u should be good to go
我会在你的 .m 文件中定义它(.h 文件是你的公共 api 文件,除非你希望它公开,否则我不会按照另一个答案中的建议将它放在那里)。
在
@implementation
上方的 .m 文件中写入:I would define it in your .m file (the .h file is your public api file and unless you want it to be public, I wouldnt put it in there as suggested in another answer).
Above the
@implementation
In your .m file write: