summaryrefslogtreecommitdiffhomepage
path: root/objvectiv-C.html.markdown
blob: 02975eb67f63460e4397aea6ec9cac47c51b8ebe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
language: Objectiv-C
author: Eugene Yagrushkin
author_url: www.about.me/yagrushkin
filename: learnc.Objectiv-C
---

Objective-C is the main programming language used by Apple for the OS X and iOS operating systems and their respective APIs, Cocoa and Cocoa Touch.
It's is a general-purpose, object-oriented programming language that adds Smalltalk-style messaging to the C programming language. 

```Objective-C
// Single-line comments start with //

/*
Multi-line comments look like this.
*/

// Import headers with #import
#import <UIKit/UIKit.h>
#import "SomeAppDelegate.h"

// Declare your class in a header(.h) file:

@interface UserObject : NSObject{
// instance variables
}

// Class method
	+ (NSString*) ClassMethod;

// Instance method
	- (NSString*) instanceMethodWithParmeter:(NSString*)string;

@end

// Add class methods in an implementation (.m) file:

@implementation UserObject

+ (NSString*) ClassMethod{
	return @"SomeString";
}

- (NSString*) instanceMethodWithParmeter:(NSString*)string;
{
	return [NSString stringWithString:string];
}

@end

// Create an object instance by allocating memory and initializing it. An object is not fully functional until both steps have been completed.
UserObject *someObject = [[UserObject alloc] init];

// The Objective-C model of object-oriented programming is based on message passing to object instances. 
// In Objective-C one does not simply call a method; one sends a message.

[someObject instanceMethodWithParmeter@"Steve Jobs"];


```
## Further Reading

[Wikipedia Objective-C](http://en.wikipedia.org/wiki/Objective-C)

[Objectively Speaking: A Crash Course in Objective-C](http://www.raywenderlich.com/12444/objectively-speaking-a-crash-course-in-objective-c)

[iOS For High School Students: Getting Started](http://www.raywenderlich.com/5600/ios-for-high-school-students-getting-started)