Any Windows IDE for viewing objective-c code?

I want to be able to view the source code of an iPhone application in Windows. I do not want to compile and run the code, I just need to have some kind of tool that understands the structure of the source code of Objective-C and iPhone. Something that considers the source code as a whole (based on the project) and ideally can link different classes and methods. Something more than just a simple editor with a code style and something less than a full-fledged IDE. Do you offer any tools?

+4
source share
5 answers

Most editors will support Objective-C syntax highlighting. Personally, I use VIM or NotePad ++. I would recommend NotePad ++ for ease of use. But as far as I know, for Windows there is no "IDE" for Objective-C.

+4
source

I use jEdit if I need to see the source code on Windows. Pretty much handles the entire structure and syntax highlighting of objective C.

EDIT: its editor. Not an IDE. But with your needs just looking at the code, I think that should be enough.

+2
source

If you want a little more than just syntax highlighting, GNUStep has an IDE called PRoject Center . GNUStep can run on Windows, so there will probably be a Project Center as well.

+1
source

Emacs has good syntax and padding support for Objective-C, for example, it can be indented when the method calls the Xcode method (based on ':'), and there is a version of Windows available here .

Although this is not an IDE, most of the time I use it for Obj-C / GNUstep without much trouble.

+1
source

If you use something like ctags to tag your source code, you can use any editor with ctags support.

Ctags doesn't seem to support Objective-C directly, but it's pretty easy to add a new language to ctags.

0
source

Source: https://habr.com/ru/post/1332224/


All Articles