The main purpose of Objective-C programming language is to add object orientation to the C programming language and classes are…
Read More

The main purpose of Objective-C programming language is to add object orientation to the C programming language and classes are…
Read More
It is possible to pass some values from the command line to your Objective-C programs when they are executed. These…
Read More
In Objective-C programming, error handling is provided with NSError class available in Foundation framework. An NSError object encapsulates richer and…
Read More
NSLog method In order to print logs, we use the NSLog method in Objective-C programming language which we have used…
Read More
Type casting is a way to convert a variable from one data type to another data type. For example, if…
Read More
The Objective-C programming language provides a keyword called typedef, which you can use to give a type a new name.…
Read More
The Objective-C Preprocessor is not part of the compiler, but is a separate step in the compilation process. In simplistic…
Read More
Objective-C arrays allow you to define type of variables that can hold several data items of the same kind but…
Read More
The string in Objective-C programming language is represented using NSString and its subclass NSMutableString provides several ways for creating string…
Read More
Pointers in Objective-C are easy and fun to learn. Some Objective-C programming tasks are performed more easily with pointers, and…
Read More
Objective-C programming language provides a data structure called the array, which can store a fixed-size sequential collection of elements of…
Read More
In Objective-C programming language, in order to save the basic data types like int, float, bool in object form, Objective-C…
Read More
An Objective-C class defines an object that combines data with related behavior. Sometimes, it makes sense just to represent a…
Read More
A function is a group of statements that together perform a task. Every Objective-C program has one C function, which…
Read More
Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program,…
Read More
There may be a situation, when you need to execute a block of code several number of times. In general,…
Read More
An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. Objective-C language is rich…
Read More
The constants refer to fixed values that the program may not alter during its execution. These fixed values are also…
Read More
A variable it’s a data type and can be composed by letters, numbers and underscore character. Type: char: 1 byte(octet)…
Read More
In objective-c data types are: basic types; enumerated types; type void; derived types; Integer types: char: 1 byte (-128 to…
Read More
You can use X-Code to write your first program ‘Hello World!’: // First program example #import <Foundation/Foundation.h> int main (int…
Read More