Tagged Questions
1
vote
0answers
13 views
Distinguishing between 'destination of udp packet unreachable' and 'received packet with payload of length 0' in Objective C
Currently, when I send a udp packet to an unreachable destination (e.g. an unbound local port), I get an event that I can't seem to distinguish from receiving a zero-length udp packet.
I am creating ...
1
vote
1answer
99 views
Selector function called from another class
I have a viewController Controller and a view view A. Also ViewA contains a button.
Generally, we call a function in the same class to be executed when clicked on button. But I want a method in ...
0
votes
5answers
134 views
How to make iOS callback functions? [duplicate]
I can't figure out how to make a function, that will give information to the parent object, that has done something, so I need your help.
Example what I want to make:
ViewController class ...
1
vote
1answer
174 views
delegate function vs callback function [duplicate]
I work on iOS platform , I want to know what is a delegate function and what is a callback function ? what is the difference between the two types of function or they are the same ??
example of ...
1
vote
2answers
67 views
iOS keepAlive callback instance variables
When my handler is called by the system, I seem to loose some pointers to instance variables.
In my .m implementation I have
@implementation BackgroundWorker
MyApplication* myApp;
NSDate* ...
0
votes
2answers
188 views
How to load several photos with assetForURL with a list of URLs
For a list of URLs I need to load the photos with ALAssetsLibrary:assetForURL, and this within one method.
Since this method works async but it is not iterating over the passed list of URLs, as we all ...
2
votes
3answers
264 views
ObjC/C/C++ high resolution timer with callback
I was sure this question has been asked before so I did of course use the search function to check if there's an answer solving my issue.
However, all I could find were a lot of answers on measuring ...
0
votes
1answer
46 views
Calling a callback method from -drawRewct: using CoreGraphics [closed]
I have been provided with a method used for styling, called [in / from] the -drawRect: method of my UIView subclass. Unfamiliar with lower-level CG syntax I am not sure how to call a method starting ...
0
votes
1answer
74 views
Completion block/callback on FetchRequest completion
I have a FetchRequest in my model class named ContentManager. It fetches quite a lot of data, so the screen is blank until it's completion. In the ViewController that displays the fetched results, I ...
0
votes
1answer
89 views
Creating callbacks with blocks
I'm new to Objective-C having come from the JavaScript world, and I'm trying to define a "callback" property on a class. In JavaScript land we're used to passing around functions willy-nilly, but it ...
0
votes
1answer
93 views
ios objC call back calling method
Im using System sound services, to play a sound I have recorder with the microphone,
is working fine, and using a callback when the sound stops,
//callback pa saber termina
...
1
vote
0answers
95 views
Wrapping a callback inside a callback for interop usage between C# and Objective-C with monodevelop
I'm wrapping an Obj-C api which uses blocks for callbacks using MonoDevelop. I managed to connect my C# delegates into a block in Objective-C and it works fine as long as I decorate them with ...
1
vote
1answer
156 views
How to handle an asynchronous callback in a synchronous function call?
I am having a method which asynchronously returns an object (e.g. UserProfile) in a callback.
Based on this UserProfile object, some code computes whether a UITableViewCell is editable or not:
I ...
0
votes
3answers
159 views
Objective-C - Storing block with parameters for callback
I have a general routine, which takes a few parameters.
Something like:
-(id) doStuff:(int)A:(int)B:(int)C {
//doStuff
return object;
}
I have a UITableViewController, which houses a number ...
0
votes
2answers
57 views
How to use old variable value in callback function (the one at the time of defining the callback) instead of value at callback runtime?
Let's see this example:
int a = 1;
[someOperation onCompletion:^(...) {
NSLog("%d", a);
}];
a = 2;
Let's say someOperation took 1 second to finish.
So there would be "2" on console.
How to ...
1
vote
0answers
73 views
Rewriting a threaded Objective-C 'story engine' in CoffeeScript: How to script actions & conditions sequentially without a ton of callbacks?
I have been experimenting with porting the underlying 'story engine' of my Objective-C iPhone adventure Scarlett and the Spark of Life to HTML5 using CoffeeScript (and I am looking into ...
3
votes
2answers
212 views
Pointer lost in FSEventStream Callback (ObjC and ARC)
I've had success getting the basics of FSEventStream working to allow me to watch a folder for new file events. Unfortunately, the callback reference I'm passing into FSEventStreamCreate() is being ...
0
votes
1answer
153 views
when in audio callback function, how to update the UI/call the view controller?
I am currently learning to use Audio Queue Services in iOS. For this, I followed Audio Queue Services Programming Guide - Recording Audio. This works.
Now I would like to update a UI element (a power ...
0
votes
1answer
38 views
How to access a method in a viewController
I have the following scenario.
In my ZoomViewController
- (void) animationPicker: (NSString*) type;
and I want to access it in my IntroViewController using the following code..
...
1
vote
1answer
266 views
C++ Callbacks with objective-C, an application to RtMidi
I've read several of the previous discussion about the subject but since I'm relatively new to Objective-C, I don't really understand them. (Blocks, selectors, and delegate are very new to me).
Here ...
2
votes
2answers
182 views
Is there a way to wrap an ObjectiveC block into function pointer?
I have to provide a C-style callback for a specific C library in an iOS app. The callback has no void *userData or something similar. So I am not able to loop in a context. I'd like to avoid ...
1
vote
4answers
725 views
Pass an Objective-C object to a function as a void * pointer
I have a function:
myFunction (MyProc callback, void * ref)
This function is called from within an Objective-C class. The function is passed a pointer to the callback (a function in the class) ...
0
votes
2answers
99 views
Do I have to declare a callback method in .h file in objective c?
I have two classes A and B. Class A gives class B a target/action pair which class B callbacks later. The target is self (= class A), action is a callback method. The callback is later done with:
...
0
votes
2answers
126 views
Objective-C - Callback when keyboard is off screen
I'm sliding the keyboard off screen by doing this:
-(void)methodA {
[textField resignFirstResponder];
}
I listen to UIKeyboardDidHideNotification to be notified when the keyboard is hidden, ...
4
votes
2answers
509 views
Trouble writing a remote I/O render callback function
I'm writing an iOS app that takes input from the microphone, runs it through a high-pass filter audio unit, and plays it back through the speakers. I've been able to do this successfully by using the ...
4
votes
4answers
732 views
callback from c++ to objective c
I have ViewController in objective-c and most of my code is c++ (.mm). I'd like to setup some callbacks to member functions from obj-c (in c++) and call them from c++. Something like this (it's very ...
6
votes
2answers
2k views
Corebluetooth central manager callback didDiscoverPeripheral twice
I scan for my peripheral like this:
NSDictionary *scanOptions = [NSDictionary dictionaryWithObject:[NSNumber numberWithBool:NO]
...
1
vote
2answers
188 views
Mixing Objective-C with C and code organization
I'm working on a desktop application that watch folders using the fileevent api, so basically this is my code :
#import "PNAppDelegate.h"
void callback(
ConstFSEventStreamRef ...
1
vote
0answers
198 views
EDSDK callbacks not working after NSPrintPanel/NSPrintOperation Displayed
I am currently developing an application using the Canon EDSDK to access my DSLR that will directly print the shot images. The problem here is, that my code interfacing with the EDSDK works perfectly ...
0
votes
1answer
103 views
Executing Code after Programatically making a phone call
How can you execute code after the phone call is made ? My app makes a phone call with the following code:
- (void)callTelURL:(NSURL *)url
{
UIWebView *webview = [[UIWebView alloc] init];
...
1
vote
0answers
157 views
how to access objective-c methods from c++ callback
I want to use a c++ library in an objective-c objective. The c++ library informs my objective-c object about certain value changes of library objects. Therefore I pass a c++ callback function to the ...
0
votes
1answer
91 views
return data from sendAsynchronousReques
Objective c: I have a serviceClass connecting to a db with NSURLConnection and sendAsynchronousRequest.
I want to be able to use this class method and return the db-data to any other classmethod ...
4
votes
1answer
334 views
ObjC blocks & openssl C callbacks
Have a simple one-off tasks which needs a progress bar. OpenSSL has a useful
callback which one can use for that:
rsa=RSA_generate_key(bits,RSA_F4,progressCallback,NULL);
with
static void ...
0
votes
2answers
115 views
Why are callback functions called that? [closed]
The reason for the name 'callback' eludes me. What does that term mean?
2
votes
1answer
403 views
How to fixing bad access error in callback using NSMethodSignature?
I am creating a custom modal layer. the idea is a user see's a city, clicks on said city and accepts or rejects the location.
I use NSMethodSignature to handle the callback so I know whether the user ...
9
votes
1answer
4k views
Objective C - How to implement custom callback method but enforce specific parameter?
In my app I have a custom UITableViewCell subclass that pops up a picker when pressed. from now on I'll refer to this class as PickerCell.
I'm using several of instances of PickerCell in the same ...
0
votes
2answers
267 views
How to implement (anonymous) Lua callback functions for any number of Lua objects (tables)?
I have "objects" in Lua which use a table to maintain their set of data and functions. Simple example:
obj = {func = function(self) print(self) end}
There may be any number of objects.
Now I have ...
0
votes
2answers
149 views
respondsToSelector failing
I have an XML callback selector that seems to fail at the respondsToSelector test and I am not sure why. Why is the call failing?
The callback is set like so:
[handler setXMLCallBackDelegate:self ...
0
votes
1answer
328 views
QTCaptureOutput.delegate captureOutput:didOutputVideoFrame:… never called
Source
So, I have a QTCaptureSession set up thusly:
//Setup Camera
cameraSession = [[QTCaptureSession alloc] init];
QTCaptureDevice *camera = [QTCaptureDevice deviceWithUniqueID: ...
3
votes
2answers
225 views
Remembering performSelector: for later in Objective-C
In the box2d physics loop of my game (the step), I must call the following block:
if ([objectA conformsToProtocol:@protocol(FMCollisionProtocol)]) {
[objectA ...
3
votes
1answer
118 views
Getting callbacks of FSPathCopyObjectAsync in ARC
I'm looking to use FSPathCopyObjectAsync and I'm failing. In order to get my head around the problem I've been looking for examples of it elsewhere and although I was experimenting with the slightly ...
0
votes
1answer
4k views
Objective-C callback handler [closed]
I have a callback method that I got to work, but I want to know how to pass values to it.
What I have is this:
@interface DataAccessor : NSObject
{
void (^_completionHandler)(Account ...
3
votes
2answers
1k views
AudioServicesAddSystemSoundCompletion callback not getting called in silent mode
If I put device into silent mode using switch, AudioServicesAddSystemSoundCompletion callback method doesn't get called. If the switch is on, I mean if device is NOT in silent mode, method gets called ...
0
votes
1answer
37 views
See when an executable opens and closes
How can I get a callback within my application when an executable (such as pbs, cp, etc) launches and then exits? This would need to work only knowing the path to the executable.
3
votes
1answer
609 views
Notification from background thread in C callback
As my first Mac application, I'm building an app that displays incoming MIDI timecode.
Therefore, I am having an instance of the RtMidi "library" which wraps the MIDI in and out stuff.
The Mac OS Core ...
1
vote
1answer
376 views
Simple Clock application: use delegation or callback every second?
I'm having some fun with objective c. As a simple program I wanted to write a clock application.
Basically, a UITextField needs to show the current time and update every second.
My initial thought ...
1
vote
2answers
455 views
iOS: Unable to access instance methods inside a C-class
I dont think I've understood C well enough.
In my codes, added a call back method.
And inside the method, I want to be able call a method that beings to the instance. I tried [self methodName] but ...
0
votes
1answer
135 views
How to correctly return callbacks from C++ engine to obj-c program?
First the situation:
There is C++ written engine implemented in Objective C program. iPhone xcode to be precise. It uses OpenGL to draw everything. It has "renderFrame" method that is called every ...
24
votes
4answers
4k views
Implementing a method taking a block to use as callback
I would like to write a method similar to this:
+(void)myMethodWithView:(UIView *)exampleView completion:(void (^)(BOOL finished))completion;
I've basically stripped down the syntax taken from one ...
1
vote
1answer
204 views
using printf in C callback function in Objective-C
I have an Xcode4 (OSX 10.6.7)app using USB and therefore including C callback functions that are defined outside the @implementation context. That works well, but I cannot see the output I inserted ...