DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

Objective-C: Introduction

Start learning Objective-C with a quick overview and Hello World.

Read time: 1 min • Words: 43
My Progress

Objective-C — Introduction

Overview

This is a starter page for Objective-C.

Hello World

#import <Foundation/Foundation.h>
int main(){ @autoreleasepool { NSLog(@"Hello, World!"); } return 0; }

What you'll learn

  • How to run Objective-C
  • Basic syntax style
  • Next steps (lessons & references)

Next

Open the Syntax & Cheat Sheet page for this language.