|
Is there a way to dynamically call an Objective C function from Python?
For example, On the mac I would like to call this Objective C function
[NSSpeechSynthesizer availableVoices]
without having to precompile any special Python wrapper module.
Started by Mark Harrison on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Unlike, MacRuby, PyObjC is a classical bridge--there is a proxy ... .
It uses the BridgeSupport framework to map Objective-C frameworks to Python.
Since OS X 10.5, OS X has shipped with the PyObjC bridge, a Python-Objective-C bridge.
Here.
|
|
I am writing an Objective-C class but is uses an API written in C. This is mostly fine as mixing C calls with Objective-C calls causes few problems.
However one of the API call requires a call back method (example):
success = CFHostSetClient(host, MyCFHostClientCallBack...
Started by rjstelling on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
To call Objective-C code; } - (void) someMethod....
As in the example , this can be manipulated with normal Objective-C make a C function that calls Obj-C delegate methods on other objects.
C object to the C function.
|
|
I am trying to write a function which returns a string created from two input strings;
but when I try the function declaration
NSString Do_Something(NSString str1, NSString str2) { }
the compiler gets sick. (Worked fine for a different function with int...
Started by John R Doner on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See my answer to C function always returns zero to Objective CAll Objective....
In mind that this is a (C-style) function and not an instance method written on an Objective-C object earn some of the language's benefits).
|
Ask your Facebook Friends
|
I want to make a file that contains useful functions for my project. Well, I know that I can define a function inside my class implementation. But I don't really get it... I mean: I don't want to create a "class", just functions. Or are functions always...
Started by Thanks on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Let Xcode manage ....
Include your header file wherever you need one of your functions.
A body file (.c) containing all function bodies.
Organize your code in plain old C style:
a header file (.h) containing all function declarations.
|
|
I have an Objective C project incorporating a C file with some helper functions. I have a grave and very irritating problem trying to return float s from the C file.
C file:
float returnFloat() { return 10.0; }
Meanwhile in an Objective C instance method...
Started by Benji XVI on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You're mixing C function prototypes with Objective-C revision of his post, he was mixing the C way of writing function prototypes with the Objective-C way of writing....
]; // assuming this is an object
Not what you have.
|
|
When using XCode for writing for the iphone SDK... like a simple function that accepts a text-string URL and visits the website, and returns the HTML... which is better?
Use Objective-C and write a "method" that accepts an NSString and returns an NSString...
Started by Donna on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For your particular example, you could probably get.
Unless performance is a serious concern to wrap it in Objective-C to work on the iPhone.
Typically you would write new iPhone code in Objective-C.
|
|
When reading Best way to define private methods for a class in Objective-C I end up with a programming style doubt. Which is the better solution (in terms of style) to this problem? To use a category and declare it in the @interface directive in the ....
Started by GuidoMB on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
…
If you are using Objective-C 2.0, you should instead declare a method and you do not need to have any....
The Google Objective-C Style Guide says ,
Use a private category to prevent cluttering the public header.
Categories are the way to go.
|
|
I have an application for Mac OS X that supports plugins that are intended to be loaded at the same time. Some of these plugins are built on top of a Cocoa framework that may receive updates in one plugin but not another. Given Objective-C's current method...
Started by fbrereto on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Note that this is not unique to Objective-C, even C based plugins can also call.
Objective-C currently has no notion of namespaces, and the runtime only presents a single (global) dispatch table.
|
|
Hi,
I have a really long objective c function definition, and would like to split it into multiple lines to make the function more readable. Let's say I have this definition:
-(id) initWithBsType:(NSInteger)buysell AccountCode:(NSString *):c_acc_code ...
Answer Snippets (Read the full thread at stackoverflow):
I'd recommend using structs and maybe.
Probably quite long.
In typical Objective-C style, methods that span multiple lines are usually aligned by colon to make how the calling function looks like...
|
|
Hi, I am using MVC architecture for a GUI application. The model class has some C functions. One of the C functions calls some methods of Objective-C class. I call those methods using an object of that class. The strange thing happening is that methods...
Started by shrads on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's a working sample of CYou can definitely run methods on Obj-C objects from a C function, so it's likely there's an error in your code at some point....
To the OBJC object that is un-initialised outside the objective-c scope.
|