Tagged Questions
0
votes
2answers
53 views
Say I didn't like the syntax of objC blocks… (or: how to customize llvm a little bit)
...is there anything I could do about it?
To be more precise, I would like to replace the caret "^" with something like "§" - granted, there's not much left on the keyboard that's not in use already.
...
0
votes
2answers
40 views
Does Objective-C load the whole #imported file?
I'm trying to understand what really happens at compile time and runtime with imported files.
Does #import "file.h" directive essentially copy and paste the entire file.m into the current file? Or ...
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
116 views
Compiling Objective-C Application on Linux
I've written a command line application in XCode using Objective-C. When added to my /usr/local/bin path is works as expected in OS X. However, I would like to make the binary work on Linux.
The ...
7
votes
2answers
533 views
What did the compiler and run-time system really do in my generated assembly?
I would like to understand how the generated assembly and the runtime work together, and came across a question while stepping through some generated assembly code.
Source Example
Here are three ...
0
votes
1answer
74 views
objective c libraries on ubuntu
can any one help me quick please :( ?
I installed gnustep on ubuntu and some tools for objective c development
but when I compile an objc project
gcc -o hello hello.m -Wall -lobjc
that appears to ...
2
votes
2answers
370 views
Incompatible pointer types initializing 'SubClass *__strong' with an expression of type'BaseClass *'
In objective-C, why we can not alloc+init or new a base-class object with super-class, whilst we can use constructor of super-class to initialize?
Below is some code :
s1 can be created quite ...
1
vote
2answers
87 views
Add no-objc-arc to the implementation or interface file
I have a class (NDTrie on github) which uses c struct for its internal structure, it would make it easier for users to use it in their projects with automatic reference counting by adding the ...
4
votes
1answer
83 views
Objective C Seg Fault that only occurs when compiler optimizations are enabled
I'm stumped trying to debug an issue on iOS that seems to only occur with Release builds which seems to implicate that the optimizer is doing something that isn't playing nicely with my code. The ...
0
votes
1answer
31 views
NSPageController not allowed, but settings are set to OS X 10.8
I am using an NSPageController in my app, in Targets -> Summary, Deployment Target is set to 10.8.
In Targets -> Info, Minimum system version is ${MACOSX_DEPLOYMENT_TARGET}
In Targets -> Build ...
0
votes
1answer
76 views
Redirect input/output of a terminal to a gui in iOS JB
I'm writing a GUI C/C++ editor that also compiles source files for the iOS platform, using the GNU compiler that ships with Cydia.
It's going to be a Cydia app, so everything should work.
To compile ...
5
votes
4answers
144 views
Compile time check for valid file references in Xcode
Is it possible to force the Xcode complier to verify that files referenced in code are valid?
There are multiple points in Cocoa development when you naturally reference a file programmatically via ...
2
votes
1answer
125 views
Compile Warnings About Missing @required Protocol Methods NOT Appearing
I was tinkering with XCode 4.5.2 this morning and wanting to make a table view I naturally added the UITableViewDataSource and UITableViewDelegate protocols to one on my view controller definitions.
...
1
vote
1answer
90 views
Objective-C issue - expected identifier or '(' before class
In my header file GuiController.h:
#import <Cocoa/Cocoa.h>
#import <APPKit/NSTextField.h>
#import "ClientSocket.h"
#import "UploaderThread.h"
#import "DownloaderThread.h"
/**
* SER 321 ...
0
votes
1answer
27 views
edit supporting files location for compiler in Xcode
I renamed the folder in which my Xcode project's supporting files are stored, and now I am unable to compile my project. I was able to edit the build settings to reflect the new folder name, but the ...
1
vote
1answer
99 views
Apple LLVM compiler 3.1 error
I started to get this peculiar compiler error which I cannot seem to solve. I went through some other posts in internet suggesting fixes, but none of them worked for me. I tried changing the build ...
4
votes
2answers
121 views
C function and variable inside Objective-C class implementation?
I can define c function and variable inside Objective-C class implementation like this:
@implementation MyViewController
- (void)viewDidLoad {
[super viewDidLoad];
cfunction();
}
// ...
0
votes
1answer
404 views
Compiler and/or Xcode errors unknown type and expected identifier. Import loop?
Edit2: I restructured all of my headers to have the @class as opposed to the #import language. All .m files now have #import. The problem as posted here seems to be fixed. There are some BAD ACCESS ...
1
vote
0answers
40 views
Compiler warning for unavailable methods?
Is there a way to make the compiler warn for using methods that may not be available in the deployment target SDK?
For example, using dismissViewControllerAnimated:completion: when the target is 4.3.
...
3
votes
1answer
161 views
Warning “Use of GNU statement expression extension”
I have this Objective-C istruction:
NSRange range = NSMakeRange(i, MIN(a, b));
where a and bare NSUIntegers.
MIN() is the macro defined in the standard NSObjCRuntime.hheader file as:
#if ...
2
votes
2answers
67 views
How does the compiler determine which messages can be sent to an id type variable?
I've come across this 'problem' (it's not really a problem, I merely was astonished that that was possible) while trying some things with TabBarController template in Xcode. If you use the template ...
2
votes
1answer
283 views
Duplicate symbols issue with 2 third party libraries in Xcode
I'm trying to compile a project that depends on 2 third party static libraries.
The issue is that both third parties have included the same set of "utility" classes in their static library ...
0
votes
2answers
626 views
What is a non-fragile ABI?
It may seem implied that everyone knows what a "Non Fragile ABI" is - considering the frequency and matter-of-fact-nature to which it is referred to - within Xcode. For example...
Subscript ...
1
vote
4answers
1k views
Big problems while compiling FFMPEG for iOS5
I'm trying to compile the ffmpeg library for iOS5. I tried different options but none works.
I downloaded this: https://github.com/ciphor/ffmpeg4ios .
I tried the original build_armv7 but it didn't ...
1
vote
1answer
56 views
Code does not compile for extra large implementation file
The compiler exits by throwing following error.
/var/folders/2t/jkh9ngsn6f9bnmz8l0mz0zm80000gs/T/xsdLocal20-ZhAiH9.s:1895977:branch out of range
clang: error: assembler command failed with exit code ...
3
votes
2answers
101 views
Is it important not to have unused class imports in Objective - C?
I want to #import my custom class in "ProjectName"-Prefix.pch file in Xcode project.
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import ...
0
votes
1answer
376 views
Invalid Conversion Specifier - SQLite - xCode Objective C
I have just updated my compiler after downloading the new version of xCode. I am getting the following error around this piece of SQLite code :
if (pack !=YES) {
query = [[NSString alloc] ...
7
votes
2answers
369 views
CoffeScript'esque language for Objective-C?
Seeing what has been done for Java with Xtend and Mirah I can't help but think someone must be playing around with something similar for Objective-C or even C and C++ for that matter.
After some ...
0
votes
0answers
67 views
adding .h and .m files to an Objective C project
Apologies for a noobish question.. I'm building an Iphone App, and I'm trying to add some new code in 'C', in a separate file..
So I created two new files - newCode.m and newCode.h. I included the ...
0
votes
2answers
72 views
Duplicate symbol error in objective-c
I need some globals in my Objective-C application. For that purpose, I've created class Globals (that inherits NSObject) and put readonly properties in it. I've also declared some constants, like ...
2
votes
3answers
226 views
Is every single file compiled in Objective-C?
I would like to know, which code is compiled when i build the project in Objective-C - every single line of code in my project, or only those, that are called from the main.c and then from the ones ...
7
votes
2answers
646 views
Can I get the C++ preprocessor to send output during compilation?
I have been debugging a particularly insidious bug which I now believe to be caused by unexpected changes which stem from different behavior when different headers are included (or not).
This is not ...
2
votes
1answer
332 views
Set Up iOS project to use eigen
I'm trying to set up an iOS project to compile a c++ library called Eigen for Linear Algebra maths.
I begin following the instructions of the Question mentioned in:
How to compile Eigen in iPhone
...
2
votes
2answers
99 views
Weird compiler optimization/behavior regarding a “for” loop without a body in Objective-C
I have the following C array of NSString *:
static NSString *const OrderByValueNames[] = {@"None",@"Added",@"Views",@"Rating",@"ABC",@"Meta"};
Now, I want to check the length of this array at ...
0
votes
1answer
76 views
internal compiler error using iOS block format
I am trying to get use to this format. However I keep getting odd issues like this...
[accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) ...
0
votes
1answer
194 views
iOS: What can cause the Xcode compiler to throw errors when I include my AppDelegate.h into another header file?
I am trying to #import my "AppDelegate.h" into another header file of the same project in order to access methods of the AppDelegate of my iOS project.
So, my header file looks something like this:
...
0
votes
3answers
105 views
EXC_BAD_ACCESS pointing me an arm line of code
I´m trying to know what I´m doing wrong because the console is giving me an EXC_BAD_ACCESS, just in the arm line I´m pointing below.
Any pointing to the solution could help, because I don´t understand ...
3
votes
3answers
2k views
Problems when compiling Objective C with Clang (Ubuntu)
I'm learning Objective-C language. Since I don't have a Mac, I'm compiling and running my code within Ubuntu 11.04 platform.
Until now, I was using gcc to compile. I've installed GNUStep and all was ...
1
vote
1answer
120 views
Not using header files in Objective-C
I'm creating a small program which consists of a few source files on my desktop (I'm not using Xcode) which I compile from the command line. Since everything is so tiny and small I would like to skip ...
2
votes
2answers
69 views
Are there any overheads in repeatedly casting between float and double
Mixing various Frameworks and Libraries I often see code like this
float floatValue = 0.5f;
float returnValue = 0.0f;
returnValue = (float)[object someMethod:(double)floatValue]; //returns double
...
6
votes
1answer
228 views
Add keyword to Objective-C using Clang
How would I go about adding a relatively trivial keyword to Objective-C using the Clang compiler? For example, adding a literal @yes which maps to [NSNumber numberWithBool:YES].
I have looked at the ...
2
votes
2answers
198 views
Compiling a simple Objective-C program
I'm trying to create and compile a simple Objective-C program from the command line. Here is the code:
audio.h
#import <Foundation/Foundation.h>
#include <stdlib.h>
#import "WavReader.h"
...
2
votes
2answers
173 views
Optimization of local variables in Objective C loop
I remember many years ago they were teaching us to create local variables outside of loops, e.g.:
SomeVariable* var;
for(int i; i<10; i++)
{
var = [someArray objectAtIndex:i];
(...)
}
I ...
0
votes
1answer
342 views
internal compiler error: Bus error: 10
I have written code for an animation that shakes a UIImageView on the screen, but although the syntax seems to be correct, I am getting an obscure "internal compiler error: Bus error: 10" when ...
1
vote
3answers
108 views
Use compiler conditional to control delegate implementation?
Is it possible to use a compiler directive to control if a particular delegate is implemented?
For example, in the following code, I only want to include a library if we're a constant is defined:
...
1
vote
1answer
178 views
xCode Release build screws up uiview
I have an iOS project I have been working on for the last few months.
It is running great on the iPhone 3GS and up and the iPod touch 3g and up. It works on an iPod touch 2g and iPhone 3G if i compile ...
4
votes
2answers
130 views
Does LLVM do simple arithmetic before compiling?
I often see in code things like 60*60 instead of 3600. Do they both compiler to the same exact thing? I.e., does the precompiler replace 60*60 with 3600 for you?
0
votes
1answer
45 views
First version of gcc to implement Objective-C?
I want to know what was the first version of GCC that supported Objective-C ?
2
votes
4answers
2k views
How to build an Online Objective-C Compiler
I'm simply looking for an online objective-c compiler. At the moment I have only found ideone.com but it shows errors for any Foundation (e.g NSObject) or UIKit (e.g UIView) classes.
Is there an ...
0
votes
1answer
113 views
Got so many error when compiled C++ in Xcode
everyone
I try to add c++ class into my iphone project.but I got so many error message
for example , in MyClass.h
struct DefaultData{
char id[32];
char name[256];
};
struct ...


