Xcode Logos

From iPhone Development Wiki
Revision as of 02:32, 29 September 2013 by Eswick (talk | contribs) (Improved grammar.)

Using Logos and theos with Xcode

Theos and Logos were designed to allow developers to do iOS development without Xcode, but many developers instead prefer to use Xcode because of its code highlighting and code completion functionality. This page contains methods to integrate Xcode with Theos.

crash-x's method


I am sure many people have or will figure out better ways on how to do this, but for now I just want to get this started. 

What I am posting is far from perfect, but is useable and I am sure it will be useful to some. I am using xCode just as a code editor and let theos handle everything else.
The basic steps are:
1. Use an Xcode project as a wrapper
2. Logos .xm files have to be .mm files with .xmi symlinks
3. Work around logos % directives breaking code completion


1. xcode project wrapper

I am simply using L0CKnL0aD7's wrapper. Instructions on the github page https://github.com/L0CKnL0aD7/template-theosXcodeWrapper

2. xcode project wrapper

Xcode does not accept .xm or .xmi files and does not complete code or highlight them. Xcode also does not accept symlinks. This means the actual files containing code have to be .mm. To make theos work with them, just create a symlink with the .xm or xmi filename and point theos' makefile to it.


3. Work around logos % directives breaking code completion

Unfortunately just using the %hook and adding methods in that block confuses xcode and it does not highlight and code complete stuff. My solution for that problem is simply making xcode thing that the hooked methods are in an @implementation block. My first attempt at that was something like:

#ifdef THEOS
%group MyHooks
%hook UIApplication
#else
@implementation UIApplication
#endif


- (void) openURL: (id) arg {
    
	%orig;	
}



#ifdef THEOS
%end
%end
#else
@end
#endif

Add to your makefile:

MyTweak_CFLAGS = -DTHEOS

This works, but it is ugly and just confused me while scrolling through the code.