learnxinyminutes-docs/objective-c.html.markdown

103 lines
2.5 KiB
Markdown
Raw Normal View History

2013-08-13 16:32:20 +04:00
---
2013-08-13 16:38:39 +04:00
language: Objective-C
contributors:
- ["Eugene Yagrushkin", "www.about.me/yagrushkin"]
- ["Yannick Loriot", "https://github.com/YannickL"]
filename: LearnObjectiveC.m
2013-08-13 16:32:20 +04:00
---
2013-08-13 16:45:49 +04:00
Objective-C is the main programming language used by Apple for the OS X and iOS operating systems and their respective frameworks, Cocoa and Cocoa Touch.
It is a general-purpose, object-oriented programming language that adds Smalltalk-style messaging to the C programming language.
2013-08-13 16:32:20 +04:00
```Objective-C
// Single-line comments start with //
/*
Multi-line comments look like this.
*/
##Basic types
// all the primitive variable types are the same as in C
// char, int, long, double, float
// Simple, common classes
// number
NSNumber *firstNumber = @1;
NSNumber *secondNumber = @23.0;
NSNumber *boolNumber = @YES;
// string
NSString *aString = @"some string";
// array
NSArray *array = @[ @1, @2];
// dictionary
NSDictionay *dictionary = @{ @"aKey" : @"aValue", @"aKey2" : @"aValue2" };
// Import headers with #import
#import <UIKit/UIKit.h>
#import "SomeAppDelegate.h"
##Coding classes
// 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 @"New string";
}
- (NSString*) otherMethodWithString:(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];
##Calling Methods
// 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"];
##Nested Messages
// nested messages look like this:
[someObject instanceMethodWithParmeter:[someObject otherMethodWithString:@"Jony Ive"]];
```
## Further Reading
[Wikipedia Objective-C](http://en.wikipedia.org/wiki/Objective-C)
2013-08-13 16:45:49 +04:00
[Learning Objective-C](http://developer.apple.com/library/ios/referencelibrary/GettingStarted/Learning_Objective-C_A_Primer/)
2013-08-13 16:32:20 +04:00
[iOS For High School Students: Getting Started](http://www.raywenderlich.com/5600/ios-for-high-school-students-getting-started)