在两个相似的子类 Objective C 之间重用代码

发布于 11-11 04:03 字数 231 浏览 2 评论 0原文

我有一些代码,用于在鼠标悬停在 NSTextField 上和编辑它时在 NSTextField 周围绘制边框,以及在用户键入时垂直调整其大小。我现在想在 NSTokenFieldCell 上使用此代码。我已经让它工作得很好,并且 NSTextField 和 NSTokenFieldCell 的实现是相同的。我想知道是否有某种方法可以避免在两个类类型之间重复代码。我相信 NSTokenFieldCell 实际上是 NSTextField 的子类。

I have a bit of code that I use to draw a border around a NSTextField when mousing over it, and while editing it, as well as to have it resize vertically when the user is typing. I want to use this code on an NSTokenFieldCell now. I've gotten it to work fine, and the implementation is identical for both NSTextField and NSTokenFieldCell. I was wondering if there was some way I could avoid the need to duplicate my code between the two class types. I believe NSTokenFieldCell is actually a subclass of NSTextField.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

聽兲甴掵2024-11-18 04:03:12

我最终将所有自定义功能提取到一个单独的 NSObject 类中,然后为我的 NSTextField 和 NSTokenField 类提供了它的实例,然后我只是使用 - (id)forwardingTargetForSelector 将所有自定义逻辑代理到我的“逻辑”对象中:(SEL)aSelector

它并不完美,因为我仍然需要手动代理我覆盖的方法,例如每个类中的drawRect,但我想说它现在属于“足够好”类别。我有兴趣看看是否有人有更好的解决方案我可以尝试。

I ended up pulling all my custom functionality out into a separate NSObject class, and then gave both my NSTextField and NSTokenField classes an instance of it, then I just proxied all of the custom logic into my "logic" object using - (id)forwardingTargetForSelector:(SEL)aSelector

It's not perfect as I still need to manually proxy over the methods that I overrode such as drawRect in each class, but I'd say it falls into the "good enough" category now. I'm interested to see if anyone has a better solution I can try.

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