1 @interface Foo 2 @end 3 4 @interface Foo(Top) 5 -(void)top; 6 @end 7 8 @interface Foo(Top2) 9 -(void)top2; 10 @end 11 12 @interface Foo(Top3) 13 -(void)top3; 14 @end 15