一、获取按钮绑定的方法名
创建一个UIButton/UIControl 的 分类,利用 sendAction:to:forEvent:
方法来获取按钮绑定的方法/事件
- 如下:
只要按钮被点击,就会打印被绑定的方法
// UIButton+Click.h
#import <UIKit/UIKit.h>
@interface UIButton (Click)
@end
// UIButton+Click.m
#import "UIButton+Click.h"
@implementation UIButton (Click)
// 其实只是用这个就可以(目的:打印出 点击按钮所调用的方法名)
- (void)sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event {
NSLog(@"方法名是:%@", NSStringFromSelector(action));
[super sendAction:action to:target forEvent:event];
}
@end
如需在原有方法上做进一步处理,可以试试
方法交换
#import "UIButton+Click.h"
#import <objc/runtime.h>
@implementation UIButton (Click)
+ (void)load {
[super load];
Method oldObjectAtIndex = class_getInstanceMethod([UIButton class], @selector(sendAction:to:forEvent:));
Method newObjectAtIndex = class_getInstanceMethod([UIButton class], @selector(zd_sendAction:to:forEvent:));
method_exchangeImplementations(oldObjectAtIndex, newObjectAtIndex);
}
// 其实只是用这个就可以(目的:打印出 点击按钮所调用的方法名)
- (void)sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event {
NSLog(@"方法名是:%@", NSStringFromSelector(action));
[super sendAction:action to:target forEvent:event];
}
- (void)zd_sendAction:(SEL)action to:(id)target forEvent:(UIEvent *)event {
// 自定义处理 前 coding
// 调用原方法
[self zd_sendAction:action to:target forEvent:event];
// 自定义处理 后 coding
}
@end
二、遇到的问题:
使用第三方SDK,其有自己的VC,但是对外不可见;
目标却是自定义VC上一个按钮的方法😱
三、解决思路:
- 利用Xcode查看层级关系可以得到VC的 名称
- 给VC添加分类,利用生命周期可以取得VC的 View
- 从View的SubViews中可以取出需要使用的 按钮
- 使用上述方法可以得到按钮绑定的 方法名
- 删除原绑定的方法,绑定自定义方法
- 可能:自定义方法处理后,还需要调用原有方法
四、实现:
// 第1步 使用Xcode查看即可
// 第2.1步 给获取到的VC添加分类
// ZDXXXViewController+Cate.h
#import <UIKit/UIKit.h>
@interface UAAuthViewController : UIViewController
@end
@interface UAAuthViewController(Rotate)
@end
// ZDXXXViewController+Cate.m
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
// 第2.2步 获取View及其SubViews
[self zd_buttonAddCustomAction];
}
- (void)viewDidDisappear:(BOOL)animated {
[super viewDidDisappear:animated];
}
- (void)zd_buttonAddCustomAction {
NSArray <UIView *>*subVs = self.view.subviews;
// 第3步 获取到所需的按钮
// 循环subVs,分析对比,得到需要的按钮的index为i
// 或者其他方法,只要可以获取到按钮即可
UIButton *btn = (UIButton *)subVs[i];
// btn 的一些设置
// 第4步 使用获取按钮绑定方法,获取到了绑定的方法名(buttonAction)
SEL sel = NSSelectorFromString(@"buttonAction:");
// 第5.1步 删除原绑定的点击事件
[loginBtn removeTarget:self action:sel forControlEvents:UIControlEventTouchUpInside];
// 第5.2步 绑定自定义点击事件
[loginBtn addTarget:self action:@selector(zd_buttonAction:) forControlEvents:UIControlEventTouchUpInside];
}
- (void)zd_buttonAction:(UIButton *)btn {
if (condition) {
// 第6.1步 自定义处理
// coding
// 第6.2步 调用原有绑定的方法
SEL sel = NSSelectorFromString(@"buttonAction:");
if ([self respondsToSelector:sel]) {
[self performSelector:sel withObject:btn];
}
}
else {
// 其他处理
}
}
五、Runtime时调用方法
// NSObject.h
// Returns a Boolean value that indicates whether the receiver implements or inherits a method that can respond to a specified message.
// 返回一个布尔值,该值指示接收方是否实现或继承可以响应指定消息的方法。
- (BOOL)respondsToSelector:(SEL)aSelector;
// Sends a specified message to the receiver and returns the result of the message.
// 将指定的消息发送给接收者并返回消息的结果。
- (id)performSelector:(SEL)aSelector;
- (id)performSelector:(SEL)aSelector withObject:(id)object;
- (id)performSelector:(SEL)aSelector withObject:(id)object1 withObject:(id)object2;
六、字符串与SEL的相互转换
// 字符串转SEL
SEL sel = NSSelectorFromString(@"selName");
// SEL转字符串
NSString *selName = NSStringFromSelector(sel);