Tagged Questions
The nsinvocation tag has no wiki summary.
6
votes
3answers
201 views
What's the purpose of the setSelector method on the NSInvocation class?
I don't understand why we have to call the setSelector method on NSInvocation objects when that information is already passed via the invocationWithMethodSignature.
To create an NSInvocation object ...
5
votes
5answers
366 views
Make NSInvocation invoke a specific IMP
I'm looking for a way to make an NSInvocation invoke a specific IMP. By default, it invokes the "lowest" IMP it can find (ie, the most-recently-overridden version), but I'm looking for a way to make ...
4
votes
2answers
437 views
forwardInvocation not being called?
I'm having trouble getting forwardInvocation to work. For some reason, the Objective-C runtime completely ignores my forwardInvocation: method and throws an unrecognized selector exception.
My test ...
2
votes
4answers
99 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 ...
2
votes
1answer
267 views
releasing NSInvocationOperation causes app to crash
Hi I have the following code
NSString *analyticsStr = [[NSString alloc] initWithString:[self constructXMLMessage:TagObj]];
NSInvocationOperation *operation = [[NSInvocationOperation alloc] ...
2
votes
1answer
237 views
NSInvocation not passing pointer to c++ array
I think I'm making just a fundamental mistake, but I cannot for the life of me see it.
I'm calling a method on an Objective-C object from within a C++ class (which is locked). I'm using NSInvocation ...
1
vote
1answer
16 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 ...
1
vote
1answer
61 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
2answers
237 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
68 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
2answers
116 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:
...
1
vote
2answers
423 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
2answers
193 views
How to properly release retained arguments of an NSInvocation?
Are the retained arguments released when the NSInvocation is deallocated, or do I need to do a release manually on the objects in the argument list of an NSInvocation?
1
vote
2answers
118 views
1
vote
1answer
215 views
Using block expectations with OCMock
I am using GHUnit & OCMock to do some testing work in my iOS app.
So I have some trouble integrating them.
The following code works well.
NSString *s = [NSString stringWithString:@"122"];
id ...
1
vote
2answers
1k views
NSInvocationOperation define selector with params
I am trying to create NSInvocationOperation so that it should call object's method with params
- (void) getImages: (NSRange) bounds
{
NSOperationQueue *queue = [NSOperationQueue new];
NSArray ...
1
vote
1answer
244 views
Apple's caution in its documentation of + (NSMethodSignature *)signatureWithObjCTypes:(const char *)types
In Apple's documentation of this method, it says the following at the end:
Special Considerations
This method, available since Mac OS X v10.0, is exposed in Mac OS X v10.5. Only type encoding ...
1
vote
3answers
936 views
Performing selectors on main thread with NSInvocation
I want to perform animation on main thread (cause UIKit objects are not thread-safe), but prepare it in some separate thread. I have (baAnimation - is CABasicAnimation allocated & inited before):
...
1
vote
1answer
164 views
Over-riding NSObject and adding a class variable
I am using the following code to perform a selector after a delay with multiple passed parameters:
http://nifty-box.com/blog/2006/12/nsinvocation-cleans-code.html
It works very well, but I need to ...
0
votes
2answers
102 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 ...
0
votes
0answers
26 views
NSFetchRequest/NSInvocation
Can somebody tell me why this code won't work.
The context is a simple tableview. As soon as the user display the details
I am going to check wether the object can be deleted if the user enters edit ...
0
votes
4answers
142 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 ...
0
votes
2answers
258 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 ...
0
votes
1answer
219 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
122 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 ...
0
votes
0answers
70 views
NSInvocationoperation loading of images to an array in viewdidload
I have an array of 20 urls with images form my webpage, and I would like to load them with a background task, like a lazy image load, but they should not go to a table view, they should go to a ...
0
votes
0answers
219 views
Asynchron TableView Image load with NSOperationqueue
I am using the following code, to load images that where parsed from a NSXMLParser into a UITableView.
I dont get it running, to load the images on the right postition in the tableview.
I imagine, ...
0
votes
1answer
86 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 ...
0
votes
1answer
176 views
NSInvocationOperation with return value (BOOL)
hi i have these invocation operation:
NSInvocationOperation *operation = [[NSInvocationOperation alloc]
initWithTarget:ndParser selector:@selector (parseUrl:)
...
0
votes
1answer
111 views
How can I get an NSString result from an NSInvocation?
The following code works as expected:
NSLog(@"%@", [NSString stringWithString:@"test"]; // Logs "test"
But when I replace it with an NSInvocation, I get a totally different result:
Class class = ...
0
votes
3answers
457 views
How to pass an argument to a method called in a NSTimer
I have a timer calling a method but this method takes one paramether:
theTimer = [NSTimer scheduledTimerWithTimeInterval:animationInterval target:self selector:@selector(timer) userInfo:nil ...
0
votes
1answer
392 views
NSInvocation; variable is not a CFString
I'm making a dynamic call using NSInvocation:
NSInvocation *lNSInvocation = [NSInvocation invocationWithMethodSignature: [lListener methodSignatureForSelector:lSelector]];
[lNSInvocation ...
0
votes
2answers
526 views
How to get performSelector to work with NSInvocation?
I need to pass the touches and event from touchesBegan to my own method called by a performSelector. I am using an NSInvocation to package up the arguments but I'm having problems with the target.
...
0
votes
1answer
234 views
NSInvocation: unrecognized selector though it is set
I'm getting this message:
"(null): unrecognized selector sent to class 0x3f52e824"
The basic code I've tried:
SEL sel = @selector(applyProperties:toObject:);
NSInvocation* inv = [NSInvocation ...
0
votes
2answers
122 views
(iphone) nsInvocation leaks .. maybe the passed arguments?
I'm calling a selector on background thread,
The selector has NSAutorelasePool around it.
I guess the arguments I pass to the selector is causing the problem.
How should I deal with it?
SEL ...
0
votes
1answer
124 views
(iphone) nsInvocation crash question
i'm trying to use NSInvocation for the first time, code below are adopted from other answer codes at stackoverflow.
The timer runs fine, but it crashes when it actually expires and executes code at ...
0
votes
1answer
129 views
Do static objective-c classes have to subclass NSObject?
In my objective-c project, I have a weird, lets say, feature I have a class, like this:
#import <Foundation/Foundation.h>
@interface Convert /* : NSObject */ // <--- is that necessary?
...
0
votes
1answer
121 views
Why is prepareWithInvocationTarget: specific to NSUndoManager?
Compare...
NSInvocation* invocation = [NSInvocation invocationWithMethodSignature:[performer methodSignatureForSelector:@selector(playFile:)]];
[invocation setSelector:@selector(playFile:)];
...
0
votes
1answer
189 views
How to handle iPhone Simulator NSInvocation issue for iOS4.0+
For iPhone Simulator iOS4.0+, NSInvocation doesn't handle exceptions well. I came across a workaround to use objc_msgSend. When I tried it for the below invocation as objc_msgSend(target_, [invocation ...
0
votes
3answers
398 views
UIButton with NSInvocation
I am trying to add a button programatically in a way that upon pressing it, a certain object is being passed. I keep on getting "unrecognized selector sent" exception. Can you suggest whats wrong with ...
0
votes
1answer
137 views
NSInvocation Leaks
I am trying to setup an NSInovcation system to launch selectors into background threads using performSelectorInBackground: - So far everything is successful when running the system on instance methods ...
0
votes
3answers
176 views
NSInvocation making app crash
I'm using NSInvocation as follows:
In my init, I'm writing this in my viewDidLoad:
SEL mySelector;
mySelector = @selector(initParsersetId:type:);
NSMethodSignature * sig = nil;
sig = [[self class] ...
0
votes
2answers
146 views
NSInvocation object not getting allocated iphone sdk
I'm doing
NSString *_type_ = @"report";
NSNumber *_id_ = [NSNumber numberWithInt:report.reportId];
NSDictionary *paramObj = [NSDictionary ...
0
votes
1answer
327 views
Function with argument to a NSInvocation method
I have a controller view who is using thoses 2 functions:
[appDelegate getFichesInfo:[[self.fichesCategory idModuleFiche] intValue] ]; //first function
self.fiche = (Fiche *)[appDelegate.fichesInfo ...
0
votes
4answers
515 views
Invoking a method on a delegate after delay, from an object at the end of it's lifetime
I have a modal view controller that creates core data changes in it's own context, and when I click done, it saves the changes (that dispatches the merge changes notification), notifies the delegate ...