2

I want to know if we can develop an iphone app for ios 6 using pure c language in Xcode.

Or is there any cross compiler from c to objective c.

Please suggest me.

user2003595
  • 331
  • 1
  • 4
  • 7
  • 2
    See this first: http://stackoverflow.com/questions/10289890/how-to-write-ios-app-purely-in-c – Vishal Feb 21 '13 at 07:27
  • It is possible to write a whole app in C, but it is going to be very ugly. There is an existing question about this. – nhahtdh Feb 21 '13 at 07:28

2 Answers2

0

GCC can compile Objective-C code. Look it here

Objective-C is extension of C. If you need to compile from C to Objective-C look at standard llvm compiler and use msg_send instead of blocks

Ilya Ilin
  • 2,283
  • 21
  • 27
0

Re-inventing the Wheel!!!

Yeah, you can develop iphone app in pure C, but what about all large sets of APIs given to you that will save hunderds hours of coding, testing, performance testing?

Check here, and here.

There are few apps that can be used as titanium.

Community
  • 1
  • 1
Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140