alexeypro
alexeypro

Reputation: 3683

How to do multiple interfaces in Objective C?

How can I do the following things in Objective C (the examples below are in pseudo-code):

  1. interface A extends B, C

  2. 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!

Upvotes: 7

Views: 18481

Answers (1)

Mobs
Mobs

Reputation: 1562

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

 @interface MyClass : Class { }
 @end

MyClass extends Class implements Interface1 & Interface2

 @interface MyClass : Class <Interface1, Interface2> {}
 @end

Upvotes: 23

Related Questions