ActionClosurable icon indicating copy to clipboard operation
ActionClosurable copied to clipboard

Extensions which helps to convert objc-style target/action to swifty closures

Results 3 ActionClosurable issues
Sort by recently updated
recently updated
newest added

self?.button?.tag += 1 self?.button?.backgroundColor = (self?.button?.tag ?? 0) % 2 == 0 ? UIColor.red:UIColor.green $0.tag += 1 $0.backgroundColor = $0.tag%2 == 0 ? UIColor.red : UIColor.green

![image-20200707225546587](https://cdn.jsdelivr.net/gh/Zrzzzz/BlogImg/img/20200707225546.png) the code in Module `ActionClosurable` is different from the code in ActionClosurable-Demo

onTap should live on separated namespace to avoid potential conflict with other library. e.g. `button.rx.event`

enhancement