Tagged Questions
Objective-C++ is the combination of Objective-C with C++.
20
votes
4answers
6k views
How well is Objective-C++ supported?
I've been learning Objective-C and Cocoa by working my way through the Hillegass book and it occurs to me that I might be better off using Objective-C++. Objective-C seems like the clear choice for ...
10
votes
1answer
460 views
Disadvantages of Objective-C++? [closed]
I'm writing a large project for iOS in Objective-C++. I'm mainly using Objective-C for the UI and other Apple APIs, and C++ for internal audio processing and other information handling. I was ...
10
votes
2answers
4k views
Objective-C multiple inheritance
I have 2 classes one includes methodA and the other include methodB. So in a new class I need to override the methods methodA and methodB. So how do I achieve multiple inheritance in objective C? I am ...
10
votes
5answers
602 views
Is Objective-C++ a totally different language from Objective-C?
As the title says... are they considered different languages? For example if you've written an application using a combination of C++ and Objective-C++ would you consider it to have been written in ...
9
votes
2answers
230 views
Why does std::tr1::function work with Objective-C Blocks?
I was pretty surprised when I found that the following code actually works:
std::vector<int> list /*= ...*/;
std::tr1::function<void(int)> func = ^(int i) {
return i + 1;
};
...
7
votes
1answer
111 views
Help with debugging an iPad device crash with little info
I'm getting the following stack trace from an iPad crash pulled from the device. This was pulled from a user's iPad and I don't know what they were doing when it crashed. How would I get more info ...
7
votes
2answers
4k views
Mixing Objective-C and C++
I'm trying to mix together some Objective-C code with C++. I've always heard it was possible, but I've never actually tried it before. When I try to compile the code, I get a bunch of errors. Here's ...
7
votes
2answers
5k views
Why does assert simply terminate a program compiled for iPhone?
I'm debugging a heavily assert()'ed iPhone app (Xcode, Objective C++, device simulator). In some cases, the assert failure would just terminate the app, instead of breaking into the debugger as I'd ...
6
votes
2answers
2k views
How can I use C++ with Objective-C in XCode
I want to use/reuse C++ object with Objective-C.
I have a hello.h that has the class definition, and hello.cpp for class implementation.
class Hello
{ int getX() ... };
And I use this class in ...
6
votes
6answers
308 views
What's the difference between alloca(n) and char x[n]?
What is the difference between
void *bytes = alloca(size);
and
char bytes[size]; //Or to be more precise, char x[size]; void *bytes = x;
...where size is a variable whose value is unknown at ...
6
votes
2answers
3k views
Objective-C, .m / .mm performance difference?
I tend to use the .mm extension by default when creating new classes so that I can use ObjC++ later on if I require it.
Is there any disadvantage to doing this? When would you prefer .m? Does .m ...
6
votes
7answers
10k 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 the iPhone: ...
5
votes
1answer
75 views
Can C++ class instances on the stack be captured by Objective-C blocks?
I'm seeing some strange behavior when trying to capture an instance of a C++ class on the stack in an Objective-C block. Consider the following code:
#import <Foundation/Foundation.h>
#include ...
5
votes
3answers
352 views
Using C++ with Objective-C, How can I fix “Conflicting declaration 'typedef int BOOL'”?
I have a lot of code in C++, originally built on a PC. I'm trying to make it work with Objective-C on a Mac. To that end, I created an Objective-C framework to house the C++ code and added a thin ...
5
votes
3answers
106 views
Obj-C++: template metafunction for recognizing Objective-C classes?
Using Objective-C++, can I write a C++ IsObjectiveCClass<T> template metafunction such that IsObjectiveCClass<T>::value is true if and only if T is an Objective-C class?
Exactly what are ...
5
votes
4answers
2k views
What is the difference between c++, objective-c and objective-c++?
I want to know the difference between c++ and objective-c and objective-c++.
Can any one give me the difference and Can we use the c++ for iPhone development
Thank you,
Madan Mohan
5
votes
2answers
645 views
Can I separate C++ main function and classes from Objective-C and/or C routines at compile and link?
I have a small C++ application which I imported Objective-C classes. It works as Objective-C++ files, .mm, but any C++ file that includes a header which may end up including some Objective-C header ...
5
votes
2answers
4k 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,1)], G[(0,1)], ...
4
votes
2answers
68 views
How to use NSString as key in Objective-C++ std::map
I'm starting work on an Objective-C++ project, getting a feel for how the synthesis of the two languages feels before I do any heavy-duty design. I am very intrigued by how Automated Reference ...
4
votes
2answers
65 views
declare obj-c class interface that contain c++ class type ivar
Currently I am working on a cocos2d+Box2D project so I have deal with some Objective-C++ code.
And I am facing to such situation:
#import "cocos2d.h"
#import "Box2D.h"
@interface BasicNode : CCNode ...
4
votes
2answers
203 views
Objective-C++ block vs Objective-C block
In Objective-C I have the valid code:
TestTwo.h:
@interface TestTwo : NSObject
-(void)test;
@end
TestTwo.m:
@implementation TestTwo
-(void)test
{
void (^d_block)(void) =
^{
int ...
4
votes
1answer
435 views
iOS media picker does not show up
I am currently working on an audio application on iPhone. It is based on apple's SpeakHere sample code with a user-defined input file from iPod library.
Here is the event raised by the button:
- ...
4
votes
2answers
3k views
Objective-C++ for iOS development
Is it possible to use Objective-C++ for iOS application (iPhone, iPad, iPod touch) development?
Are there any examples and source code on the Internet?
4
votes
2answers
3k views
Mixing Objective C ,(*.m , *.mm & .c /.cpp ) files
In my project Core libraries are part of C/C++ files, while UI needs to be developed in Objective C,
I am able to access/Call C++ functions from Objective C/.mm files
but reverse no luck so far, ...
4
votes
1answer
713 views
Using c/c++ library that uses network for iphone app objective c
I am currently evaluating if a c/c++ library may be used for a specific iPhone project of mine. The original library makes heavy use of windows specific code (for example it includes windows.h and ...
4
votes
1answer
313 views
Objective-C++ pre-compiled headers
I'm using a C++ library (it happens to be in an iPad application, but I'm not sure that should make any difference) and would really like to have the headers pre-compiled to speed up the builds, but ...
4
votes
2answers
594 views
XCode GCC-4.0 vs 4.2
I have just changed a compiler option from 4.0 to 4.2.
Now I get an error:
jump to case label crosses initialization of 'const char* selectorName'
It works fine in 4.0
Any ideas?
4
votes
2answers
518 views
How to static analyze C++ and Objective-C++ code?
The "Build and analyze" option doesn't seem to work for .cpp and .mm files. I tried "clang --analyze" on individual files without any standard #includes and it works well. However I'm not able to run ...
4
votes
1answer
570 views
Does it prohibited calling classic C function from Objective-C++ class method body?
I have experienced some strange behavior of Objective-C++.
I have an Objective-C++ class, and it calls a classic C function in a method body.
But linker cannot find the C function.
I described the ...
4
votes
4answers
481 views
The Objective-C++ language: where can I find more information about it?
I've been learning C++ for some months now and find it an excellent language albeit its perks.
I was wondering what exactly is the so-called Objective-C++ and if it's worth learning it as a main ...
4
votes
1answer
125 views
Language Mixing: Model and View
Consider developing an application where the model will be written in C++ (with Boost), and the view will be written in Objective-C++ (with Cocoa Touch).
Where are some examples showing how to ...
4
votes
6answers
998 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 use boost?
3
votes
4answers
63 views
Any downside to never creating ObjC files but always creating ObjC++ files instead?
By default Xcode creates both an .h and and an .m file when you ask for a new ObjC class.
Everything works fine until you need to refer to any C++ file elsewhere in your project and start #import ing ...
3
votes
1answer
127 views
DDMathParser in .mm file
In my Xcode project I need to rename my ViewController.m in ViewController.mm
, but I also need the DDMathParser.
I compile the parser in the .m file without any errors.
But when I compile it in ...
3
votes
1answer
105 views
Optimizing Quartz2D performance on touch events
What I am doing is on every touch event I am creating an image from unsigned char *. Here is my function
-(void)paint:(ImageWarper::WarpedImage *)warpedImg isCircleRequired:(bool)doDrawCircle ...
3
votes
2answers
80 views
new, delete, Objective-C++, and leaks
I'm adding functionality to an existing Cocoa application written mostly in Objective-C. I have to use an existing c++ class in the class I'm writing, so the new class is Objective-C++. Furthermore, ...
3
votes
2answers
135 views
String compare vs Class compare in objective-C
I'm writing an objective-C game and I'm at the stage where i should start optimising some of my code in the game loops.
I have an extensive amount of class compare methods used,
if ([obj ...
3
votes
1answer
104 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 ...
3
votes
1answer
84 views
Apple's Using C++ with Objective-C article is gone… Can anyone give me a new article, or help me find the old one?
If one searches for mixing objective-c and c++ this link invariably comes up as THE solution.
Using C++ With Objective-C
Unfortunately it's dead. Does anyone know where this article has moved, have ...
3
votes
1answer
91 views
Using an Objective-C++ class with C++ instance variables in Objective-C code
I'm writing an Objective-C++ class interface that has to be usable from both Objective-C and Objective-C++. The problem is that, because it must be usable from Objective-C, I cannot simply use a C++ ...
3
votes
1answer
129 views
NSString weakly holding const char * of std::string
What's the safest way for a NSString to weakly contain a const char * belonging to a std::string? Both examples below work on a simple test, in logs, and as presented in a NSTableView, but I'm ...
3
votes
2answers
194 views
Objective-C++ / Cocoa attempt to create a window with button, not working?
I'm supposed to create a c++ class with c++ methods, that are made of objective-c and use cocoa, but now I've ran into a problem, and simply can't figure it out, cause I'm pretty new at objective-c. ...
3
votes
2answers
94 views
How to receive NSNotifications from Objective-C in C++ classes?
I have an Objective-C++ class that adds itself as an observer for an event on a Cocoa NSView. I would like to be able to send the NSNotifications to a method of a C++ class instead of an Objective-C ...
3
votes
2answers
129 views
Are unreachable objects safe from collection for any time after becoming unreachable?
I'm storing some Obj-C objects in a C++ data structure. Since I'm running under garbage collection and my objects are only reachable via the C++ structure, I'm calling CFRetain() to root each object ...
3
votes
2answers
380 views
Why can't I use a boost::function in an Objective-C++ block?
The following code throws an exception
terminate called after throwing an instance of ...
3
votes
2answers
919 views
What does “Autoreleased with no pool in place” mean?
My Application structure is as follows,
the core part is written in C++ and using thread heavily, and i am developing UI in Objective C on top of it,
if i don't execute the thread it works fine, but ...
3
votes
4answers
680 views
How to wrap a C++ lib in objective-C?
I have a C++ library (.h only) that contains the implementation of a data structure and I'd like to use it in my iPhone app.
Firstly, I wrote a wrapper in objective-C++ as a class that, through ...
3
votes
2answers
716 views
gcc -x objective-c with Android SDK
Since Objective-C exists and is supported even in MinGW, by passing -x objective-c, is there a hack to achieve this with Android SDK? I've did a rudimentary test on a colleague's machine where it ...
3
votes
2answers
621 views
xcode “compile source as” override for specific file
I have a project that has to be set to "Objective-C++" for the "compile source as" value (no, "according to file type" will not work in my main project). I am having a problem with a file I got from ...
3
votes
4answers
519 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. The goal here was ...