这可能吗?例如,我有一个带有init方法的TriangleDataView类。目前,该方法声明如下:
- (id)initWithFrame:(CGRect)frame delegate: (id) delegateObject;
我想要求delegateObject符合UITextFieldDelegate协议。但那是什么语法?
答案 0 :(得分:6)
- (id)initWithFrame:(CGRect)frame delegate:(id<UITextFieldDelegate>)delegateObject;