क्या UIButton में @selector तर्क के लिए ऑब्जेक्टिव-सी ब्लॉक पास करना संभव है?
पहले से उपलब्ध सभी उत्तरों में लेते हुए, उत्तर हां है लेकिन कुछ श्रेणियों को सेटअप करने के लिए काम का एक छोटा सा हिस्सा आवश्यक है।
मैं NSInvocation का उपयोग करने की सलाह देता हूं क्योंकि आप इसके साथ बहुत कुछ कर सकते हैं जैसे कि टाइमर के साथ, एक वस्तु के रूप में संग्रहीत और आह्वान ... आदि।
यहाँ मैंने क्या किया है, लेकिन ध्यान दें मैं एआरसी का उपयोग कर रहा हूं।
पहले NSObject पर एक सरल श्रेणी है:
ज
@interface NSObject (CategoryNSObject)
- (void) associateValue:(id)value withKey:(NSString *)aKey;
- (id) associatedValueForKey:(NSString *)aKey;
@end
।म
#import "Categories.h"
#import <objc/runtime.h>
@implementation NSObject (CategoryNSObject)
#pragma mark Associated Methods:
- (void) associateValue:(id)value withKey:(NSString *)aKey {
objc_setAssociatedObject( self, (__bridge void *)aKey, value, OBJC_ASSOCIATION_RETAIN );
}
- (id) associatedValueForKey:(NSString *)aKey {
return objc_getAssociatedObject( self, (__bridge void *)aKey );
}
@end
अगला एक ब्लॉक में स्टोर करने के लिए NSInvocation पर एक श्रेणी है:
ज
@interface NSInvocation (CategoryNSInvocation)
+ (NSInvocation *) invocationWithTarget:(id)aTarget block:(void (^)(id target))block;
+ (NSInvocation *) invocationWithSelector:(SEL)aSelector forTarget:(id)aTarget;
+ (NSInvocation *) invocationWithSelector:(SEL)aSelector andObject:(__autoreleasing id)anObject forTarget:(id)aTarget;
@end
।म
#import "Categories.h"
typedef void (^BlockInvocationBlock)(id target);
#pragma mark - Private Interface:
@interface BlockInvocation : NSObject
@property (readwrite, nonatomic, copy) BlockInvocationBlock block;
@end
#pragma mark - Invocation Container:
@implementation BlockInvocation
@synthesize block;
- (id) initWithBlock:(BlockInvocationBlock)aBlock {
if ( (self = [super init]) ) {
self.block = aBlock;
} return self;
}
+ (BlockInvocation *) invocationWithBlock:(BlockInvocationBlock)aBlock {
return [[self alloc] initWithBlock:aBlock];
}
- (void) performWithTarget:(id)aTarget {
self.block(aTarget);
}
@end
#pragma mark Implementation:
@implementation NSInvocation (CategoryNSInvocation)
#pragma mark - Class Methods:
+ (NSInvocation *) invocationWithTarget:(id)aTarget block:(void (^)(id target))block {
BlockInvocation *blockInvocation = [BlockInvocation invocationWithBlock:block];
NSInvocation *invocation = [NSInvocation invocationWithSelector:@selector(performWithTarget:) andObject:aTarget forTarget:blockInvocation];
[invocation associateValue:blockInvocation withKey:@"BlockInvocation"];
return invocation;
}
+ (NSInvocation *) invocationWithSelector:(SEL)aSelector forTarget:(id)aTarget {
NSMethodSignature *aSignature = [aTarget methodSignatureForSelector:aSelector];
NSInvocation *aInvocation = [NSInvocation invocationWithMethodSignature:aSignature];
[aInvocation setTarget:aTarget];
[aInvocation setSelector:aSelector];
return aInvocation;
}
+ (NSInvocation *) invocationWithSelector:(SEL)aSelector andObject:(__autoreleasing id)anObject forTarget:(id)aTarget {
NSInvocation *aInvocation = [NSInvocation invocationWithSelector:aSelector
forTarget:aTarget];
[aInvocation setArgument:&anObject atIndex:2];
return aInvocation;
}
@end
इसका उपयोग कैसे करना है:
NSInvocation *invocation = [NSInvocation invocationWithTarget:self block:^(id target) {
NSLog(@"TEST");
}];
[invocation invoke];
आप आह्वान और मानक उद्देश्य-सी विधियों के साथ बहुत कुछ कर सकते हैं। उदाहरण के लिए, आप NSInvocationOperation (initWithInvocation :), NSTimer (शेड्यूल किए गए WithTimeInterval: मंगलाचरण: रिपीट :) का उपयोग कर सकते हैं
बिंदु आपके ब्लॉक को NSInvocation में बदल रहा है और अधिक बहुमुखी है और इसे इस तरह इस्तेमाल किया जा सकता है:
NSInvocation *invocation = [NSInvocation invocationWithTarget:self block:^(id target) {
NSLog(@"My Block code here");
}];
[button addTarget:invocation
action:@selector(invoke)
forControlEvents:UIControlEventTouchUpInside];
फिर से यह सिर्फ एक सुझाव है।
objc_implementationWithBlock()
औरclass_addMethod()
इस समस्या को हल करने के लिए संबंधित वस्तुओं (जो कि हैश लुकअप के रूप में विधि लुकअप के रूप में कुशल नहीं है) का उपयोग करने की तुलना में थोड़ा अधिक कुशल फैशन में हल करते हैं। संभवतः एक अप्रासंगिक प्रदर्शन अंतर है, लेकिन यह एक विकल्प है।