我可以将委托逻辑仅分离到一个类文件中吗?
我有很多文本字段,仅支持使用类型“A”/“B”/“C”,我编写了一个文本字段委托来检查用户输入,包括他们输入的长度和内容。但我想将委托与类文件分开。我怎样才能这样做呢?谢谢。
I have many textfield, that only support using type "A"/"B"/"C" only, I wrote a textfield delegate to check the user input, including the length and the content that they inputed. But I want to separate the delegate from the class file. How can I do so? Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
指定所有文本字段委托给该对象
创建另一个对象并在属性声明中
使用分配然后合成
textfield1.delegate=newobject;
textfield2.delegate=newobject;
textfield3.delegate=newobject;
create another object and specify those all textfield delegate to that object
in property declaration use assign
then synthasize
textfield1.delegate=newobject;
textfield2.delegate=newobject;
textfield3.delegate=newobject;