1
vote
1answer
14 views
GH-Unit and Objective C++
I have an iPhone project that uses GHUnit to conduct unit testing. Recently, I've needed to implement complex numbers and overload some operators to ease the calculation of FFTs. …
0
votes
7answers
318 views
C vs C++ (Objective-C vs Objective-C++) for iPhone
I would like to create a portable library for iPhone, that also could be used for other platforms.
My question is the fallowing:
Does anyone knows what is the best to be used on …
0
votes
2answers
80 views
passing pointers or integral types via performSelector
I am mixing Objective-C parts into a C++ project (please don't argue about that, its cross-platform).
I now want to invoke some C++ functions or methods on the correct thread (i.e. …
1
vote
5answers
334 views
C++ classes as instance variables of an Objective-C class
Hello!
I need to mix Objective-C and C++. I would like to hide all the C++ stuff inside one class and keep all the others plain Objective-C. The problem is that I want to have som …
0
votes
0answers
45 views
iPhone Device/Simulator memory oddities using Objective-C++
I am porting a project to the iPhone (from Windows Mobile) and sharing much of the generic C and C++ code as possible, using Objective-C++. However, during testing I have stumbled …
1
vote
2answers
227 views
Converting RGB data into a bitmap in Objective-C++ Cocoa
I have a buffer of RGB unsigned char that I would like converted into a bitmap file, does anyone know how?
My RGB float is of the following format
R [(0,0)], G[(0,0)], B[(0,0)],R …
0
votes
0answers
25 views
How to get OpenGL to display NV12 texture in Cocoa
I have a YUV:420 (aka NV12) frame data, how can I get OpenGL to recognize its format for glTexImage2D() rendering.
I realize that I might have to perform colorspace transformation …
3
votes
6answers
387 views
How much of C++ is supported in Objective-C++
I want to make an iPhone app, but I am planning to make the framework in C++. Is it possible to use things like templates in Objective-C++. I guess really the question is, can I us …
1
vote
5answers
443 views
Objective-C string manipulation
Currently I am working on a piece of software, which is currently written 100% in Objective-C using the iPhone 3.0 SDK.
I have come to a cross roads where I need to do quite a bit …
0
votes
1answer
69 views
How to remove “NSBundle may not respond to ‘-pathForResource:ofType’ “ warning.
I am trying to expose the pathForResource functionality to C++ from objective-c.
However, I am very new to objective-c and have not been able to discern how to use a c string as a …
3
votes
4answers
348 views
C++ multiple inheritance and Objective-C. Is this is a bug in GCC?
I encountered following weird behavior yesterday. It seems a compiler bug to me or is there a something that I've missed? I was wrapping Facebook Connect for iPhone's Objective-C c …
0
votes
1answer
117 views
Objective-c++ symbol not found strangeness
hej.h
void hej();
hej.m
void hej(){}
main.mm
#import "hej.h"
int main(int argc, char *argv[])
{
}
This gives me:
"hej()", referenced from:
_main in main.o
symbol(s) not …
0
votes
1answer
123 views
Loading Nib and Displaying Window in Objective C++
I am trying to load a Nib from a C++ constructor with Objective C++. I have searched and found enough examples to get some code together but it doesn't display the window. Or any w …
1
vote
1answer
54 views
Is Apples Objective-C++ 2.0 compiler available (and useable) on other platforms?
I know it's part of gcc but is it useable on Windows? The (core) runtime with its garbage collector does seem to be pretty complicated to port so i doubt it will be portable by coi …
0
votes
3answers
174 views
Using an Objective-C++ file from a C++ file
Hi. I have a c++ app that I'm trying to port to iPhone and to start off I'm trying to replace my c++ texture loader with an obj-c++ texture loader so that I can make use of the coc …
