Last active
June 9, 2024 13:08
-
-
Save cprovatas/98ff940140c8744c4d1f3bcce7ba4543 to your computer and use it in GitHub Desktop.
Block-Based Selectors in Swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BlockBasedSelector.h | |
// | |
// Created by Charlton Provatas on 11/2/17. | |
// Copyright © 2017 CharltonProvatas. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> | |
@interface BlockBasedSelector : NSObject | |
@end | |
typedef void (^OBJCBlock)(id _Selector); | |
typedef void (^OBJCBlockWithSender)(id _Selector, id sender); | |
void class_addMethodWithBlock(Class class, SEL newSelector, OBJCBlock block); | |
void class_addMethodWithBlockAndSender(Class class, SEL newSelector, OBJCBlockWithSender block); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BlockBasedSelector.m | |
// | |
// Created by Charlton Provatas on 11/2/17. | |
// Copyright © 2017 CharltonProvatas. All rights reserved. | |
// | |
#import "BlockBasedSelector.h" | |
#import <objc/runtime.h> | |
@implementation BlockBasedSelector | |
@end | |
void class_addMethodWithBlock(Class class, SEL newSelector, OBJCBlock block) | |
{ | |
IMP newImplementation = imp_implementationWithBlock(block); | |
Method method = class_getInstanceMethod(class, newSelector); | |
class_addMethod(class, newSelector, newImplementation, method_getTypeEncoding(method)); | |
} | |
void class_addMethodWithBlockAndSender(Class class, SEL newSelector, OBJCBlockWithSender block) | |
{ | |
IMP newImplementation = imp_implementationWithBlock(block); | |
Method method = class_getInstanceMethod(class, newSelector); | |
class_addMethod(class, newSelector, newImplementation, method_getTypeEncoding(method)); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// BlockBasedSelector.swift | |
// Parking | |
// | |
// Created by Charlton Provatas on 11/9/17. | |
// Copyright © 2017 Charlton Provatas. All rights reserved. | |
// | |
import Foundation | |
// swiftlint:disable identifier_name | |
func Selector(_ block: @escaping () -> Void) -> Selector { | |
let selector = NSSelectorFromString("\(CFAbsoluteTimeGetCurrent())") | |
class_addMethodWithBlock(_Selector.self, selector) { _ in block() } | |
return selector | |
} | |
/// used w/ callback if you need to get sender argument | |
func Selector(_ block: @escaping (Any?) -> Void) -> Selector { | |
let selector = NSSelectorFromString("\(CFAbsoluteTimeGetCurrent())") | |
class_addMethodWithBlockAndSender(_Selector.self, selector) { (_, sender) in block(sender) } | |
return selector | |
} | |
// swiftlint:disable identifier_name | |
let Selector = _Selector.shared | |
@objc class _Selector: NSObject { | |
static let shared = _Selector() | |
} |
You have to import that class as an objective-c class as there are some issues with how the blocks are bridged into Swift. Just import 'BlockBasedSelector.h' into your bridging header file and everything should work as expected.
There is no license information. Can this be made available for consumption in a commercial application with a good open license? Or is ther any other way to license this for such use?
@lukya yes feel free to use it. this snippet was written independently by myself and isn't the IP of any other entity
Hi maybe you can help me. I take an error when I run method Selector : unrecognized selector sent to instance 0x10dd44ce0'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Me too return me nil, There is an updated version of the code in swift?