父类中有-(Person*)setName(nssstring*)name: with:(int)age类方法,
student为子类;
有如下的调用
Student s1=[Person setName:@"刘学生" with:23);
我只想引用Person类中的-(Person*)setName(nssstring*)name: with:(int)age方法,为什么会显示地址错误呢?
是的,它是服务端返回的数据集。那就按F12运行就可以看到了
你这是对象方法,类方法前面用的是+号,对象方法是-号