我可以将委托逻辑仅分离到一个类文件中吗?

发布于 2024-09-25 04:35:31 字数 94 浏览 4 评论 0原文

我有很多文本字段,仅支持使用类型“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一刻暧昧 2024-10-02 04:35:31

指定所有文本字段委托给该对象

创建另一个对象并在属性声明中

使用分配然后合成

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;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文