Objective-C Classes & Objects
The main purpose of Objective-C programming language is to add object orientation to the C…
1,290 total views, no views today
Objective-C
The main purpose of Objective-C programming language is to add object orientation to the C…
1,290 total views, no views today
It is possible to pass some values from the command line to your Objective-C programs…
1,741 total views, no views today
In Objective-C programming, error handling is provided with NSError class available in Foundation framework. An…
1,197 total views, no views today
NSLog method In order to print logs, we use the NSLog method in Objective-C programming…
1,290 total views, no views today
Type casting is a way to convert a variable from one data type to another…
1,205 total views, no views today
The Objective-C programming language provides a keyword called typedef, which you can use to give…
1,116 total views, no views today
The Objective-C Preprocessor is not part of the compiler, but is a separate step in…
1,076 total views, no views today
Objective-C arrays allow you to define type of variables that can hold several data items…
1,134 total views, no views today
The string in Objective-C programming language is represented using NSString and its subclass NSMutableString provides…
1,140 total views, no views today
Pointers in Objective-C are easy and fun to learn. Some Objective-C programming tasks are performed…
1,374 total views, no views today
Objective-C programming language provides a data structure called the array, which can store a fixed-size…
1,202 total views, no views today
In Objective-C programming language, in order to save the basic data types like int, float,…
1,165 total views, no views today
An Objective-C class defines an object that combines data with related behavior. Sometimes, it makes…
1,082 total views, no views today
A function is a group of statements that together perform a task. Every Objective-C program…
1,117 total views, no views today
Decision making structures require that the programmer specify one or more conditions to be evaluated…
1,089 total views, no views today
There may be a situation, when you need to execute a block of code several…
1,216 total views, no views today
An operator is a symbol that tells the compiler to perform specific mathematical or logical…
1,188 total views, no views today
The constants refer to fixed values that the program may not alter during its execution….
1,088 total views, no views today
A variable it’s a data type and can be composed by letters, numbers and underscore…
341,971 total views, no views today
In objective-c data types are: basic types; enumerated types; type void; derived types; Integer types:…
277,141 total views, no views today
You can use X-Code to write your first program ‘Hello World!’: // First program example…
66,187 total views, no views today