如何使 UITextView 的两个类代表?
Posted
技术标签:
【中文标题】如何使 UITextView 的两个类代表?【英文标题】:How to make two Classes delegate of UITextView? 【发布时间】:2016-07-04 08:27:08 【问题描述】:我有一个 textView“TexV”,它有一个从 UITextView 继承的自定义类“TexV_Class”,我有一个 viewController“VC”,它有一个名为“VC_Class”的自定义类
现在我怎样才能让两个类“TexV_Class”和“VC_Class”委托并让它们一起工作?是否有可能在两个类中运行相同的委托方法(例如 textViewDidChange)(暂时保留运行顺序)
我虽然让两个类都委托了,但只运行了一个(运行 textView 委托方法的 VC_Class)
【问题讨论】:
如果你真的需要这个(你可能想先重新考虑你的应用程序结构)看看MultiDelegate或ILABMultiDelegate。使用这些类有一些陷阱,但有据可查。 【参考方案1】:你不能。委托机制通过一个回调对象来工作,如果您希望多个项目根据委托做出反应,您可以通过以下两种方式之一解决这个问题:
1- 向您的一位代理人发出通知,以便另一位代理人可以采取相应行动
2- 在 TexV_Class 上设置一个自定义委托,该委托符合 VC_Class 想要采用的 UITextView 的方法,并让 TexV_Class 从它的委托回调中调用此委托。
【讨论】:
【参考方案2】:我建议你 3 种方法来做到这一点:
1) 使用 NSNotificationCenter(模式帮助 1 个对象通信一对多对象)
2) 使用多播委托模式。实现细节,可以参考这个http://blog.scottlogic.com/2012/11/19/a-multicast-delegate-pattern-for-ios-controls.html
3) 使用Proxy
设计模式。 (我选择了这种方式)
class MyTextView.h
@protocol NJCustomTextViewDelegate <NSObject>
- textViewShouldBeginEditing:
- textViewDidBeginEditing:
- textViewShouldEndEditing:
- textViewDidEndEditing:
@end
@property (nonatomic, weak) id< NJCustomTextViewDelegate >textViewDelegate;
使用这个:
in MyTextView.m
self.delegate = self;
- (void)textViewShouldBeginEditing:(UITextView)textView
// Handle business logi
// .... Do your logic here
if ([self.textViewDelegate responseToSelector:@selector(textViewShouldBeginEditing:)])
[self.textViewDelegate textViewShouldBeginEditing:self];
In MyViewController.m
MyTextView textView = ....
textView.textViewDelegate = self;
【讨论】:
以上是关于如何使 UITextView 的两个类代表?的主要内容,如果未能解决你的问题,请参考以下文章
如何从 UIPopover 中的 UIButton 在主 UIView 中创建 UITextView?
自 iOS 7 中的删除(退格)操作以来,我如何才能不接收 UITextView 委托消息?