作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果你有一个类对象,有没有办法用它来调用那个类的类方法。例如,如果你有一个类 A 和方法 + (void)foo
定义了你如何在没有编译器警告它找不到方法 foo 的情况下实现类似下面的示例:
A* object = [[A alloc] init];
id objectClass = [object class];
[objectClass foo]; // complains that the method is not found
最佳答案
您不必创建实例来调用类方法。如果必须调用实例方法,请创建实例。
类 A
的方法 + (void)foo
应该被称为,
[A foo];
关于iphone - Objective-C : Is there a way to call class methods on a class object without compiler complaints?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7206450/
我是一名优秀的程序员,十分优秀!