reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 | @interface A - (int)instanceMethod1:(int)x; + (int)classMethod1:(double)d; @end @interface B - (int)instanceMethod2:(int)x; + (int)classMethod2:(float)f; @end |