Data Structure
Java
Python
HTML
Interview Preparation
Interview Prep
Tutorials
Tracks
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.1K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.3K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Java
9.3K+ articles
Misc
7.7K+ articles
Mathematics
5.6K+ articles
Objective-C-Functions
7 posts
Recent Articles
Popular Articles
Properties in Objective-C
Last Updated: 28 April 2025
The object-oriented programming language Objective-C is largely used to create applications for Apple's macOS and iOS platforms. It incorporates all of the characteristics...
read more
Picked
Objective-C
Objective-C-Functions
Log Handling in Objective-C
Last Updated: 28 April 2025
Objective-C is a programming language commonly used for developing applications on Apple's macOS, iOS, and iPadOS platforms. One important aspect of programming in Objecti...
read more
Picked
Objective-C
Objective-C-Functions
Function Call by Value in Objective-C
Last Updated: 28 April 2025
In Objective-C, "call by value" refers to the practice of passing a copy of a value, rather than a reference to the original value, as an argument to a function or method....
read more
Picked
Objective-C
Objective-C-Functions
Return Array From a Function in Objective-C
Last Updated: 28 April 2025
An array is a form of data structure that has a homogenous collection of data in a fixed size. In a nutshell, an array is a group of variables of the same type. For instan...
read more
Picked
Objective-C
Objective-C-Functions
Return Pointer From Functions in Objective-C
Last Updated: 28 April 2025
A pointer is like a variable or constant that stores the address of another variable. It must be declared before the address value of a variable is to be stored in it. The...
read more
Picked
Objective-C
Objective-C-Functions
Function Call by Reference in Objective-C
Last Updated: 20 December 2022
Just like other languages in objective-C also a function is used to perform some specific task. In objective-C, we can call a function by value or by reference. So, in thi...
read more
Picked
Objective-C
Objective-C-Functions
Passing Arrays as Function Arguments in Objective-C
Last Updated: 04 August 2022
Every programming language has a data structure that is used to store elements. Similarly, Objective-C also supports data structure which is known as an array. An array is...
read more
Picked
Objective-C
Objective-C-Arrays
Objective-C-Functions