Saturday 1 November 2014

Objective-C Introduction

Hello Friends,

Today I am going to show you How to make iOS App by using Objective C Programming Language.

Introduction

Objective-C is a object-oriented programming language that adds Smalltalk-style messaging to the C programming language. This is the main programming language used by Apple for the OS X and iOS operating systems and their respective APIs, Cocoa and Cocoa Touch till now but now apple has release a new programming lanaguage called SWIFT Programming language but the good news is that both language will support in xCode 6. You can use any language from this two.

This Blog will help you to learn the Objective C language.

Before starting I am hoping that you knows the fundamentals about the computer programs and what is computer programming language?

Compile/Execute Objective-C Programs

In this tutorial all the examples are tested you just need to copy this code and paste it into the xCode and just hit the run button you will see the output.

#import <Foundation/Foundation.h>

int main()
{
   /* First Programming using Objective C */
   NSLog(@"Welcome to the World of iOS Application! \n");
 
   return 0;
}

Video Tutorial




Thank You
Abhishek


For More Details You can visit
http://programming-guru.com/
http://youtube.com/webboostings/
http://webboostings.blogspot.in/

No comments:

Post a Comment