How can I do the following things in Objective C (the examples below are in pseudo-code):
-
interface A extends B, C
-
interface A
interface B
class X inplemements A, B
3.
interface A
class X implements A
class Y implements A
interface B
class Z extends Y implements B
thanks!
Sounds like homework, you should take the first move: http://en.wikipedia.org/wiki/Objective-C
look at 2.2 Interfaces and implementations
MyClass extends Class
MyClass extends Class implements Interface1 & Interface2