Objective-C++ is the combination of Objective-C with C++.

learn more… | top users | synonyms

3
votes
2answers
37 views

Self pointer, using with C++ from Objective C

I am having a slight confusion with the self pointer. I understand that if I want to use self in objective C, I need to pass it as a parameter e.g. someFunction(id self) { } What I'm slightly ...
0
votes
0answers
11 views

BoostC++ and Objective-C++ result in EXC_BAD_ACCES

I have a utility class which is opening, reading, writing, and closing files with the help of the boost files system. Now I want to reuse it in an Objective-C application. Everything builds fine ...
0
votes
3answers
57 views

Create an array using a function - Objective-C++ [duplicate]

I want to create an array from a function. The following obviously works, however because my arrays are much larger I want to save the space and the time writing them out. GLfloat ...
0
votes
0answers
53 views

How to custom rectangle progress bar using cocos2d-x for multi-platform

I want to custom a rectangle progress bar with multi-platform like attracted image. Is there any source code for that? Cocos2d-x has the same one with CCProgressTimer but I can't find any ...
0
votes
0answers
5 views

CoreAudio iOS, AVAudioPlaybackAndRecord, NSMutableDictionary, Sampler, iOS and punk rock too

How do I sample an object, where I can record the record data in the plist. While rather I am hoping I can record an m4a of the recording session as a simple sampler as well. I have been like take ...
0
votes
2answers
45 views

Why does my class respond to my global SEL variable only in Debug builds?

I'm using Objective-C++ for a personal project and I found odd behavior with SEL variables at the global scope with an initializer. Consider this runnable Objective-C++ snippet: #import ...
1
vote
0answers
66 views

Objective C method not working properly inside objective C++

I'm calling a objective C method in objective C++ class where I create a label also hiding the status bar but the status bar is hiding fine while the label was not getting created and shown! If I call ...
0
votes
1answer
24 views

Linker error when trying to link log4cxx into an Xcode ObjC/C++ program

I have been trying to link log4cxx into my ObjC/ObjC++/C++ project. It compiles but always fails at the link stage due to undefined symbols. By turning on the Xcode build option "Display Mangled ...
0
votes
0answers
17 views

iOS using pthread_mutexattr_t trouble

i am porting an existing c++ project to objective-c++ and came across this mutex stuff. I am not sure what is done here neither if it is correct. To initialize some kind of multithreading lock ...
1
vote
1answer
52 views

Trouble adding Obj-C++ subproject into a Xcode Obj-C project

I created a Objective-C++ project that runs some C++ (OpenCV) code. It runs fine and everything works well. But then I decided to add these routines as a subproject to my MAIN PROJECT, I get errors ...
1
vote
1answer
60 views

Objective-C: If I return a C++ object in a function in ARC, will it create a copy and do I have to manually release that copy?

I am trying to pass a reference to a C++ Object in Objective-C, so I can access that object from another class, specifically: // ClassA -(b2World *)getWorld{ return world; } In another class I ...
1
vote
1answer
20 views

Capturing the spec filename in a ruby DSL implementation?

I am writing a ruby DSL that will be used to code-generate a number of Objective-C++ functions. I would like the name of each function to be derived from the name of its ruby DSL source file. For ...
1
vote
2answers
53 views

Cannot use a C++ file in Xcode - Cannot Resolve Libs

I am trying to figure out why XCode cannot resolve a C++ file I imported. I have changed the file extension to .mm I have added the .h file contents to the top of my file I have command line tools ...
1
vote
1answer
105 views

Apple Mach-O linker error with duplicate symbols even after linking the .m class files to the build phases in Xcode

When i build and run my project the only error i get, turns out to be the Apple Mach-O linker error 20 duplicate symbols for architecture i386 Linker command failed with exit code 1 (use -v to see ...
0
votes
1answer
68 views

include <iostream> works in ViewController.h but not in appDelegate.h

So I am trying to move some C++ objects from my viewController.h and .mm to my appDelegate.h and .mm. Problem is I get a preprocessor issue stating that for example can not be found, neither can ...
0
votes
1answer
36 views

Cocoa Message Pump?

I am trying to implement a Cocoa message pump. I do not have much experience with Cocoa API, but I managed to implement a rudimentary pump using NSApp nextEventMatchingMask. The problem with this ...
1
vote
1answer
30 views

Is there a way to “force” MatrixBase::eval to happen on a template function argument?

I am working on code for a library that uses Eigen extensively, and frequently maps Eigen::Matrix objects with an NSObject subclass of my own design (vMAT_Array). Working with the library often ...
1
vote
1answer
15 views

Leak Observed with NSThread

While we are developing some application in XCode4 for IOS, we have stumbled upon a strange problem: In an NSThread, we are periodically updating a GUI element(an image) in an infinite loop. In order ...
0
votes
2answers
57 views

Why does using an STL std::vector as a __block variable cause memory corruption?

After some time and effort I have tracked down a memory smashing bug in my code to this function. I stopped the memory smashing by replacing the two __block vector<int> variables with the ...
0
votes
1answer
32 views

Is it possible to convert VTK into OSX framework bundle?

I want to pack the VTK framework inside my App like a .framework bundle in OSX. Is it possible to do so? If yes, please help me to do it. I have downloaded the source of latest release 5.10.1 ...
1
vote
1answer
48 views

Why does this functor's operator() need the trailing const modifier?

I am coming back to C++ (or well, technically, Objective-C++) after many years absence, so please bear with me. I am trying to use templates to implement a solution that would otherwise require a ton ...
0
votes
1answer
46 views

Variables not kept when changed in a callback

I am making a game made in C++ which at some point wants to open make use of the camera. To do this it interfaces with an Objective C class which presents the modal view controller: ...
8
votes
1answer
170 views

3D model does not appear when rendering

I'm using Vuforia to place a 3D model on an image target. I have created a common C++ solution to work on both Android and iOS. It works on Android, but I can't get the 3D model to appear in iOS. It ...
0
votes
1answer
92 views

How to Call a C++ Method in Objective-C

I have C++ files: C.cpp and C.h //C.h #ifndef __ThreeMoreOpenCV__SourceC__ #define __ThreeMoreOpenCV__SourceC__ #include <iostream> class C { public: static void Cmethod (); }; #endif ...
1
vote
1answer
93 views

Objective C: Pretty print NSArray with different objects at each index position

I have an NSArray of different objects, e.g. an NSString and an NSNumber integer. I have a specific format string I want to use to print the object contents, not just using @"%@|%@" but, e.g. ...
0
votes
0answers
29 views

Can an Objective-c method be put into a C++ class?

Is it possible to declare an objective-c method in a C++ class? For example: class Piles { public: int topIndexOf(); void incrementTopIndex(); void addCard(); - (void)addImage:(); // ...
0
votes
1answer
49 views

Converting from std::string to NSString

How can I convert from std::string to NSString in this case? void Piles::imagePlacer(Card card, int xCoord, int yCoord) { string cardType = card.toString(); UIImageView *cardImg = ...
1
vote
1answer
319 views

Cocos2d-iPhone with Box2D: CCPhysicsSprite EXC_BAD_ACCESS

I just recently started messing with cocos2d's Box2D integration, while most of the process has been simple and straight forward, I keep running into a EXC_BAD_ACCESS error when using a ...
2
votes
2answers
146 views

Assigning block pointers: differences between Objective-C vs C++ classes

I’ve found that assigning blocks behaves differently with respect to Objective-C class parameters and C++ classes parameters. Imagine I have this simple Objective-C class hierarchy: @interface Fruit ...
1
vote
2answers
137 views

What compile options of clang change their default between Objective C and Objective C++?

I was reading the clang documentation on reference counting, which says that “ By default in Objective-C, ARC is not exception-safe”. It proceeds to say: A program may be compiled with the option ...
0
votes
1answer
64 views

AudioFileGetProperty - no matching function call in .mm source file, but OK in .m?

I've needed to change an obj-C source file from .m to .mm in order to access some c++ classes. As soon as I do so, AudioFileGetProperty() & AudioFileReadPackets() report a "No Matching Function ...
0
votes
2answers
64 views

Init a new array on instantiation

I'm developing an iOS application with latest SDK. I have an Objective-C++ class with these two properties: @interface MyClass : NSObject @property (nonatomic) int* road; @property (nonatomic) int* ...
0
votes
4answers
245 views

Converting NSString to std::string

I try to pass a NSString to a C++ function, but I only get the first letter. Here is the code: #import <Foundation/Foundation.h> #import <string> int main(int argc, const char * argv[]) { ...
0
votes
1answer
173 views

Is it possible to refactor Objective-C++ code in Xcode

I am a game developer. I have developed a game using box2d which is in Final Phase. To structure the code when i attempt to make code refactoring i am receiving this error alert ...
1
vote
0answers
93 views

Issues including C++ files with Objective C on iOS

I'm trying to include several different items from AudioCore, in particular, AQRecorder. This does, however, have dependencies on c++ code. Normally this is not an issue as I just rename my view ...
2
votes
3answers
170 views

Mixing Objective-C and boost/C++

I finally have a very basic version of my graph searcher working through a CLI, but I find myself in a position where I need to refactor all of the code. Since I am doing this programming on a mac, I ...
0
votes
0answers
69 views

“Error: no such file or directory” when including header file in Objective C++

I'm working on a small Mac App using g++ (no Xcode). I'm trying to include a header file like so: #include <glfont2.h> and am getting "no such file or directory". The file exists outside of ...
0
votes
1answer
180 views

Apple Mach-O Linker (Id) Error using OpenCV framework for iOS

Got an other problem with my opencv project on iOS. So I have a small project written in Ojective C with 2 methods written in C++ : My ViewController.hh file : #import <UIKit/UIKit.h> #import ...
0
votes
1answer
96 views

How do I use an std::fstream from within a block?

I'm having trouble trying to use an ifstream from within a block. (This is part of a larger, complex project, so I whipped up a quick little source file with just the relevant parts.) // foo.cpp, in ...
0
votes
1answer
61 views

Flag to compile a specific file

I'm using on xcode a configuration to compile source as Objective-C++, but I added a Library and I want compile it as Objective-C, have a way to do it? my config: //:configuration = Debug ...
2
votes
3answers
177 views

Are long Blocks a code smell? [closed]

Lots of modern Objective-C APIs use blocks extensively. For example, we often write things like this: [NSAnimationContext runAnimationGroup:^(NSAnimationContext *context){ ...do some animations ...
1
vote
0answers
74 views

How do objective-C properties function with C++ objects

So I am really curious as to how different kinds of properties work with C++ objects. For example say I have a property which I declare like this: @property (atomic,assign) myClass::sp_t ...
0
votes
1answer
22 views

UIView subclass ignores second touch

I'm making an iOS game, and I've written a UIView subclass that's supposed to catch touch events, and it works as intended for a single touch. However, if I'm already touching the screen with one ...
1
vote
2answers
248 views

XCode 4.6 clang analyzer worried over null C++ pointers than can't be null

Running the analyzer for XCode 4.6 and the new clang compiler, I seelots of warnings Called C++ object pointer is null even for guarded expressions like - (BOOL) validate: (Node*) node { if ...
1
vote
1answer
138 views

Why does Objective-C runtime library use C++ ABI for exception handling? [closed]

I saw at http://opensource.apple.com/source/objc4/objc4-532.2/runtime/objc-exception.mm that Apple's Objective-C runtime uses some C++ ABI functions for exception handling, like __cxa_throw, ...
-1
votes
1answer
294 views

Xcode 4.6 crash because of ARC?

Unbelievable in Xcode 4.6. If I initialize a variable to something, it frees the memory. But what if this variable has a random value ? class X { private: NSThread* thr; public: X(); }; ...
0
votes
0answers
127 views

How to #import C++ Header File in iPhone/iPad Project

Referred Question: Problem when #import C++ Header File in iPhone/iPad Project Well, my project is relatively huge and cannot solve that either changing ALL or PART OF my project files .m to .mm or ...
1
vote
1answer
119 views

Cocos2D Make Camera Follow Sprite Not Working Properly

I am using the following code to make the camera follow my character as he falls down the screen: [self runAction:[CCFollow actionWithTarget:charSprite worldBoundary:[levelLoader ...
0
votes
1answer
190 views

Does xcodebuild command have some options about C++ compile options?

When I used Xcode 4.6 preview verion or xcodebuild command, I had a such error below. invalid suffix on literal; C++11 requires a space between literal and identifier However When I used Xcode4, ...
0
votes
2answers
57 views

Can C++ objects have block scope?

Can C++ objects have block scope? For example, is this ok: (it crashes) (Go easy, I'm still learning C++) __block Poco::Thread* lastThread; dispatch_async(dispatch_get_main_queue(), ^ { for ...

1 2 3 4 5 12