具有返回值的NSInvocationOperation(BOOL)

时间:2011-03-18 13:50:01

标签: iphone methods return-value nsinvocation

嗨我有这些调用操作:

NSInvocationOperation *operation = [[NSInvocationOperation alloc] 
             initWithTarget:ndParser selector:@selector (parseUrl:)
             object:[NSString stringWithFormat:@"http://URL%@",var]];

我的方法:

- (BOOL) parseUrl:(NSString *)URL;

应该扔掉布尔......

我怎样才能抓住这个价值?

问候

1 个答案:

答案 0 :(得分:3)

你可以得到这样的结果:

BOOL result;
[[operation result] getValue:&result];

来自docs here