What all languages are supported for iOS application. Is it only objective-C?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
All UIs must use UIKit, which is an Objective-C API. Back-end code can be written in C or C++ (Objective-C++ as well).
There are frameworks which provide a wrapper on top of UIKit, such as MonoTouch, which allows you to use C# to develop iOS applications. There are other solutions such as Titanium, or embedding a Lua runtime in your application.
You can also implement all of your drawing as OpenGL and use plain C or C++, with a thin Objective-C wrapper to receive touches, load system resources (files, etc) and generate the GL context.