协议能扩展协议吗?
@protocol Prot1 : Prot2 @end
就像java中的:
public interface Interface1 extends Interface2 { }
发布于 2010-03-04 02:05:26
是的,但是使用了语法
@protocol Prot1 <Prot2, Prot3, Prot4> @end
https://stackoverflow.com/questions/2373734
相似问题