An NSInvocation object contains all the elements of an Objective-C message: a target, a selector, arguments, and the return value. Each of these elements can be set directly, and the return value is set automatically when the NSInvocation object is dispatched.

learn more… | top users | synonyms

2
votes
1answer
40 views

How to use NSInvocation to call a class method? [closed]

I've a class method which is not declared in the h file, but implemented in the m file. now I want to call it in another class, since the return value is a int, I can't use selector directly, so I use ...
0
votes
2answers
50 views

Unexpected exception with NSInvocation

Following code throws an exception. vcClass is a Class object (inheritor from UIViewController). Self contains my implementation of viewWillAppear: SEL viewWillAppearSEL = ...
2
votes
1answer
62 views

Does -[NSInvocation retainArguments] copy blocks?

NSInvocation's -retainArguments method is useful for when you don't run the NSInvocation immediately, but do it later; it retains the object arguments so they remain valid during this time. As we all ...
2
votes
1answer
48 views

Strange “zombie” in forwardInvocation: + getArgument:atIndex methods

Here is part from my code: - (void)viewDidLoad { [super viewDidLoad]; CGRect frame = [[UIScreen mainScreen] bounds]; _webView = [[UIWebView alloc] initWithFrame:frame]; [_webView ...
0
votes
2answers
106 views

Multiple parameters for @selector

I am creating a game in objective C, and I am stopped by a matter : I have a warning for passing multiple variables on @selector. What I want to do, is call a method in my UIViewController but after a ...
3
votes
2answers
77 views

How does forwardInvocation: get called?

Looking only at the Objective-C runtime library, when a message is sent to an object that doesn't respond to it, the runtime system gives the receiver another chance to handle the message. So, the ...
1
vote
2answers
81 views

NSInvocation setArgument not working with simple int32_t

I am facing an issue while using NSInvocation with arguments which are not objects. The simple integer value that I pass gets changed to something different. Here is the method I am invoking: ...
3
votes
2answers
318 views

Defining an Objective-C Class without a base Class - Compiler Warning

I'm using the Following NSInvocation code form Matt Gallagher for my Undo/Redo code. Though with the Latest version of xCode I'm not getting a Warning that says: ...
1
vote
1answer
71 views

Index-based fetching of Objective-C argument values

I want to dynamically create the NSInvocation for the current method with the correct argument values. Typically, one might do this: - (void)messageWithArg:(NSString *)arg arg2:(NSString *)arg2 { ...
1
vote
0answers
45 views

How do you pass a completion block using NSInvocations?

I have an application that makes signed requests to my server. All of the requests require an authentication token. When ever I make a request, if an auth token was not found, I store that request ...
1
vote
2answers
158 views

NSInvocation setArgument issue

I need to use NSInvocation to invoke a method dynamically. Here what I have tried: NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[[messageRecord.senderController class] ...
0
votes
1answer
39 views

NSInvocation problems

So I am running into some issues when I am trying to load information from a file. myMutableArray=[[NSKeyedUnarchiver unarchiveObjectWithFile:dataFile]retain]; This is the line that gives me the ...
5
votes
2answers
144 views

NSInvocationOperation callback too soon

I know similar questions have been asked a few times, but I'm struggling to get my head around how this particular problem can be solved. So far, everything I've done has been carried out on the main ...
0
votes
1answer
109 views

Get the results returned from an NSInvocationOperation

- (void)viewDidLoad { NSOperationQueue *operationQueue = [[NSOperationQueue alloc]init]; NSInvocationOperation *downloadImageOperation = [[NSInvocationOperation alloc] ...
1
vote
0answers
116 views

Custom button for cocos2d

I was working on creating my custom "Button" class... Im not using CCMenuItems because I need some flexibility in my buttons. My implementation is the following: DMenuButton : CCSprite ...
4
votes
1answer
270 views

ARC [rewriter] NSInvocation's setArgument is not safe to be used with an object with ownership other than __unsafe_unretained

I been to convert my project to ARC and i m stuck with this error. &object,&invocation and &callerToRetain is showing me error of "[rewriter] NSInvocation's setArgument is not safe to be ...
6
votes
4answers
142 views

which one is better to use from NSInvocation or NSNotificationCentre or Delegate methods

Which one is better to use to flow the data from one class to another in the whole project? NSInvocation NSNotificationCentre delegate methods or by any other methods i am unaware of ??
2
votes
2answers
531 views

NSInvocation getReturnValue: called inside forwardInvocation: makes the returned object call dealloc:

Here's a standalone test.m file that I'm using to test the behavior. To compile: clang test.m -o test.app -fobjc-arc -ObjC -framework Foundation. Make sure the Xcode command-line tools are installed. ...
0
votes
1answer
94 views

Should NSInvocation passes self as 2d indice argument?

I am using cocos2d for developing. I have tried to wrap a customized button class. When trying to make the button respond to the selector I assigned to it, I used NSInvocation. In it, the MyButton ...
0
votes
0answers
133 views

NSInvocation throws exception

I'm trying to use an NSTimer with invocation but i have problems with 2 things. I don't know how to get the Selector to pass Arguments(Xcode crys) or how to get it work in general since it always ...
2
votes
2answers
151 views

Is there a way to observe every message calls invoked on an object (iOS)?

I just want to get a selector name, and the arguments, sender, or an NSInvocation instance every time when I send a message to an object. Possible? Something like forwardInvocation:, but in evey case ...
-1
votes
1answer
49 views

Is it possible to set method from another class as selector property for NSInvocation object?

I have a method in ClassA which is called Selector1, In ClassB I want to create a NSInvocation object and set the Selector1 as the object's selector. Is this possible? I don't know the proper way to ...
0
votes
1answer
285 views

Assistance Converting NSInvocation Code to ARC Compatible (Already Objective-C)

I found some really great code from Matt Gallagher for use with making Undo work with NSInvocation. Though now Management wants us to use ARC for all of our code and we are now converting all of our ...
3
votes
2answers
446 views

iOS - Cannot use 'super' as a reference?

I'm trying to use an NSInvocation to invoke a superclass method from the subclass. The code involved is relatively straightforward, it goes like: - (NSInvocation*) ...
2
votes
1answer
763 views

NSInvocation & NSError - __autoreleasing & memory crasher

In learning about NSInvocations it seems like I've got a gap in my understanding about memory management. Here is a sample project: @interface DoNothing : NSObject @property (nonatomic, strong) ...
2
votes
3answers
610 views

How to create an NSInvocation object using a method that takes a pointer to an object as an argument

I would like to create an NSInvocation object using a method that takes a pointer to an NSError object as an argument. An example of this would be the method - - (BOOL)writeToFile:(NSString *)path ...
0
votes
1answer
543 views

iOS NSInvocation setArgument: atIndex: does not work with struct on ARM builds

I have a strange problem with setting the argument of an NSInvocation with a struct that contains a double or any 64 bit type which is not aligned (I offset it with a char at the beginning of the ...
0
votes
0answers
316 views

Using NSUndoManager with prepareWithInvocationTarget, Gestures and Objects

I have a Drawing App of sorts. I want to Implement Undo/Redo. Though I'm running into difficulty with storing the Original and New Values for the Undo/Redo. With Gestures I need to store a Few ...
1
vote
4answers
1k views

Invoke block iOS

I try to invoke some block, but I run into a EXC_BAD_ACCESS. -(void) methodA { self.block = ^ { [self methodB]; }; } -(void) webViewDidFinishLoad:(UIWebView *)webView { [block ...
1
vote
1answer
635 views

Loading images asynchronously into a tableview cells

After searching the internet for weeks & a lot of posts here in stack too, i can't seem to find the way to implement this in my project. I have a plist in my dropbox account. one of the strings in ...
5
votes
3answers
441 views

What's the difference between NSInvocation and block?

when i say block i mean: ^(int a) {return a*a;}; besides, block is only support by iOS4 and above. What is the difference between these two?
2
votes
2answers
488 views

How to perform UIKit call on mainthread from inside a block

I am trying to push a view controller from inside a callback block. The view controller I want to push contains a UIWebView, which complains that I should call this on the main thread. I tried using ...
0
votes
2answers
203 views

Passing a selector name as a method parameter

I'm writing a custom helper method that will get used a lot and return several buttons. Each button will of course have its own target selector when pressed, and I want to pass the selector as a ...
4
votes
1answer
190 views

Using NSOperationQueue for delayed free of malloc'd void* after returning it

I'm using NSInvocation to get some method returns, and unfortunately I seem to have a leak, but can't figure out how to free the void* I'm allocating, after I've returned it from NSInvocation. In ...
0
votes
3answers
890 views

ASynchronous NSURLConnection inside NSOperation with NSInvocation?

I have to use Asynchrnous NSURLConnection inside NSOPeration in background mode,because its response is having large dataI have to avoid Apple's finite length coding to use in ...
7
votes
4answers
9k views

Asynchronous NSURLConnection with NSOperation

I want to do NSURLConnection in background mode,because it response is having much data.Forums are telling to use Apple's finite length coding to use in didEnterBackground. but I want to avoid ...
2
votes
3answers
299 views

NSInvocation pass C-arrays to Objective-C method

I want to pass C-arrays to a method in Objective-C after a delay. Typically I could performSelector:withObject:afterDelay but I can't change the arrays in any way or convert them to NSMutableArrays, ...
1
vote
1answer
391 views

getArgument of NSInvocation of current method always returns null

I want to get the name of the arguments of the current function I am in so that I can prepare loading that object from the filesystem if it's not present on the current instance. (for instance if [foo ...
3
votes
2answers
1k views

NSInvocation and ARC (Automatic Reference Counting)

When trying to migrate my current code to ARC, I'm getting errors whenever I pass an NSString as an NSInvocation argument. Example: NSInvocation inv = ...; NSString *one = @"Hello World!"; [inv ...
1
vote
4answers
3k views

A nice way to perform a selector on the main thread with two parameters?

I'm searching for a nice way to perform a selector on the main thread with two parameters I really like using - (void)performSelectorOnMainThread:(SEL)aSelector withObject:(id)arg ...
0
votes
2answers
672 views

Perform block inside a NSOperation

I have a method in some class which performs some task using a block. When I execute that method using NSInvocationOperation then control never goes to the block. I tried logging inside the block but ...
2
votes
2answers
573 views

Accessing forwardInvocation'd methods with ARC?

I'm writing a clone of OpenStruct in Objective-C, using forwardInvocation:. However, the compiler isn't aware of the forwarding at compile time apparently. Compiling with ARC gives me a ton of ...
1
vote
0answers
81 views

Send a message to a would-be-generated object

I am in a situation in which I need to send an object and a method name a UIViewController that might or might not be instantiated in the future. To make the matter a bit more interesting, the ...
1
vote
5answers
1k views

Why does NSInvocation getReturnValue: loose object?

I need your help. I have some problems with NSInvocation 'getReturnValue:' method. I want to create UIButton programmatically,and even more,I want to create it dynamically using NSInvocation and ...
1
vote
2answers
1k views

NSValue:getValue: strange behavior,why this happens?

I try to pass CGRect to NSInvocation (setArgument:atIndex:). I wrap it by NSValue, push to the NSArry,then get from NSArray and use NSValue (getValue:). Calling of (getValue:) method causes the ...
1
vote
2answers
272 views

Does nsinvocation invoked?

I'am a newby in objective c and iphone developing. I confused. I trying to create button that are created at the runtime,after clicking another button,and application doesn't know it: ...
4
votes
2answers
2k views

How to remove/cancel NSInvocationOperation from NSOperationQueue?

Both of the following questions are being asked in context to maintain NSOperationQueue and NSInvocationOperation. As I have used this concept to download multiple videos, how do I remove/release ...
1
vote
1answer
1k views

Construct NSInvocation w/ Block argument

I'm trying to send a Block as an argument to a method called by an NSInvocation (which, for context, is fired by an NSInvocationOperation). The invocation should be retaining the arguments, and it ...
0
votes
2answers
329 views

Objective C - NSInvocation passing self as sender?

I am trying to use NSInvocation to call a method on an object and send the sender as an argument. The code below calls the mthod but it seems like the object is passing to the mthod is not really self ...
1
vote
1answer
319 views

Passing a delegate around in iOS

I'm developing an iOS app which includes a search form. When a user clicks search, I want to use an NSInvocationOperation (which is fine) to spawn another thread. On this thread, I'll call my data ...

1 2