gpt4 book ai didi

ios - 如何将目标操作转换为阻止?

转载 作者:行者123 更新时间:2023-12-01 18:23:19 25 4
gpt4 key购买 nike

我在一个类中有以下选择器:

    - (SoapRequest*) loginAndConnect: (id) target action: (SEL) action credentials: (WSAcredentials*) arg0 dialoutInfo: (WSAdialoutInfo*) arg1;

我希望能够使用 block 而不是另一个选择器作为操作来调用它,但我找不到有关如何执行此操作的信息。就像是:
[service loginAndConnect:self  credentials:credentials dialoutInfo:dialoutInfo action:^(SoapRequest* aResult) {
// more code here
}];

实现这一目标的最佳方法是什么?

更新**

我几乎可以完成这项工作,但在 objc_release 中遇到了 completionBlock 对象的异常。我确定这与保留目标有关,但我不确定如何纠正它。这是当前代码:
- (BOOL) checkService {

WSAcredentials* credentials = [[WSAcredentials alloc] init];
WSAdialoutInfo* dialoutInfo = [[WSAdialoutInfo alloc] init];
if (!service) {
service = [[WSAWebSocketAdapterService alloc] init];
}
__block SoapRequest* request;
[service loginAndConnectWithCredentials:credentials dialoutInfo:dialoutInfo completionBlock:^(SoapRequestCompletionBlock completionBlock) {
request = (SoapRequest*)completionBlock;
if ([request isKindOfClass: [SoapFault class]]) {
return YES; // we got a response, that's all we care about
}
return NO;
}
];
return YES;
}

这是我的类别,非常接近下面发布的内容:
#import "WSAWebSocketAdapterService+BlockExtension.h"

// These objects serve as targets (with action being completed:) for the original object.
// Because we use one for each request we are thread safe.

@interface MyCustomSoapTargetAction : NSObject

@property (copy) SoapRequestCompletionBlock block;

- (void) completed:(id)sender;

@end

@implementation MyCustomSoapTargetAction
- (void) completed:(id)sender
{
// Assuming 'sender' is your SoapRequest
if (_block != nil)
_block(sender);
_block = nil;
}
@end

@implementation WSAWebSocketAdapterService(BlockExtension)

- (SoapRequest*) loginAndConnectWithCredentials:(WSAcredentials*) arg0
dialoutInfo: (WSAdialoutInfo*) arg1
completionBlock:(BOOL (^)(SoapRequestCompletionBlock))completionBlock
{
MyCustomSoapTargetAction *target = [[MyCustomSoapTargetAction alloc] init];
target.block = (SoapRequestCompletionBlock) completionBlock;

//
// Here we assume that target will be retained.
// If that's not the case then we will need to add it to some collection before
// the call below and have the target object remove itself from it after its
// block has been called.
//
return [self loginAndConnect:target action:@selector(completed:) credentials:arg0 dialoutInfo:arg1];
}
@end

谢谢您的帮助!

最佳答案

您实际上不需要源代码。一个类别就可以了。这是一些示例代码,可帮助您入门,
这甚至是线程安全的!如果您的对象没有保留目标,那么在调用它的 block 之前还需要做更多的工作来保留它。

// -- TheClassName+BlockExtension.h

typedef void (^SoapRequestCompletionBlock)(SoapRequest*);

@interface TheClassName(BlockExtension)
- loginAndConnectWithCredentials:(WSAcredentials*) arg0
dialoutInfo: (WSAdialoutInfo*) arg1;
completionBlock:(SoapRequestCompletionBlock)completionBlock;
@end


// -- TheClassName+BlockExtension.m

// EDITED: If the 'target' object is not retained by the loginAndConnect... then
// we may add it to this collection. In this implementation, a block can
// only be used once.

static NSMutableSet *gSoapTargets = nil;

// These objects serve as targets (with action being completed:) for the original object.
// Because we use one for each request we are thread safe.

@interface MyCustomSoapTargetAction
@property (copy) SoapRequestCompletionBlock block;
- (void) completed:(id)sender;
@end

@implementation MyCustomSoapTargetAction

- (id) init
{
// Objects adds itself to the global collection
if ((self = [super init]))
[gSoapTargets addObject:self];
return self;
}

- (void) completed:(id)sender
{
// Assuming 'sender' is your SoapRequest
if (_block != nil)
_block(sender);

// Object removes itself from global collection when done.
// On return from this method it will likely be released.
[gSoapTargets removeObject:self];
}

+ (void) load
{
gSoapTargets = [NSMutableSet set];
}

@end

@implementation TheClassName(BlockExtension)
- (SoapRequest*) loginAndConnectWithCredentials:(WSAcredentials*) arg0
dialoutInfo: (WSAdialoutInfo*) arg1;
completionBlock:(SoapRequestCompletionBlock)completionBlock
{
MyCustomSoapTargetAction *target = [[MyCustomSoapTargetAction alloc] init];
target.block = completionBlock;

//
// Here we assume that target will be retained.
// If that's not the case then we will need to add it to some collection before
// the call below and have the target object remove itself from it after its
// block has been called.
//
[self loginAndConnect:target action:@selector(completed:) credentials:arg0 dialoutInfo:arg1];
}
@end

* 更新:这是一个基于您的代码使用此类别的示例:
- (BOOL) serviceIsAvailable 
{
return _serviceIsAvailable;
}

- (void) _setServiceIsAvailable:(BOOL)value
{
// This method should probably be private thus the _ prefix
// Do something with the result (set some status, warn user...).
_serviceIsAvailable = value;
}

- (void) checkService
{
WSAcredentials* credentials = [[WSAcredentials alloc] init];
WSAdialoutInfo* dialoutInfo = [[WSAdialoutInfo alloc] init];

if (_service == nil)
_service = [[WSAWebSocketAdapterService alloc] init];

[_service loginAndConnectWithCredentials:credentials
dialoutInfo:dialoutInfo
completionBlock:^(id sender)
{
[self _setServiceIsAvailable:[sender isKindOfClass:[SoapFault class]]];
}];
}

关于ios - 如何将目标操作转换为阻止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15712816/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com