learnxinyminutes-docs/objective-c.html.markdown

171 lines
5.0 KiB
Markdown
Raw Normal View History

2013-08-13 12:32:20 +00:00
---
2013-08-13 12:38:39 +00:00
language: Objective-C
contributors:
- ["Eugene Yagrushkin", "www.about.me/yagrushkin"]
- ["Yannick Loriot", "https://github.com/YannickL"]
filename: LearnObjectiveC.m
2013-08-13 12:32:20 +00:00
---
2013-08-13 12:45:49 +00: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 12:32:20 +00:00
```Objective-C
// Single-line comments start with //
/*
Multi-line comments look like this.
*/
2013-08-13 12:56:09 +00:00
// Imports the Foundation headers with #import
#import <Foundation/Foundation.h>
// Your program's entry point is a function called
// main with an integer return type.
int main (int argc, const char * argv[])
{
2013-08-13 14:04:20 +00:00
// Create an autorelease pool to manage the memory into the program
2013-08-13 12:56:09 +00:00
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
2013-08-13 13:25:47 +00:00
// Use NSLog to print lines to the console
2013-08-13 13:50:09 +00:00
NSLog(@"Hello World!"); // Print the string "Hello World!"
2013-08-13 12:56:09 +00:00
2013-08-13 14:04:20 +00:00
///////////////////////////////////////
// Types & Variables
///////////////////////////////////////
// Primitive declarations
int myPrimitive;
// Object declarations
// Put the * in front of the variable names for strongly-typed object declarations
MyClass *myObject1; // Strong typing
id myObject2; // Weak typing
2013-08-13 13:50:09 +00:00
// %@ is an object
2013-08-13 14:04:20 +00:00
NSLog(@"%@ and %@", myObject1, myObject2); // Print "(null) and (null)"
// String
NSString *worldString = @"World";
2013-08-13 13:50:09 +00:00
NSLog(@"Hello %@!", worldString); // Print "Hello World!"
// Character literals
2013-08-13 13:52:11 +00:00
NSNumber *theLetterZNumber = @'Z';
char theLetterZ = [theLetterZNumber charValue];
NSLog(@"%c", theLetterZ);
2013-08-13 12:56:09 +00:00
2013-08-13 13:50:09 +00:00
// Integral literals
NSNumber *fortyTwoNumber = @42;
2013-08-13 13:52:11 +00:00
int fortyTwo = [fortyTwoNumber intValue];
2013-08-13 13:50:09 +00:00
NSLog(@"%i", fortyTwo);
NSNumber *fortyTwoUnsignedNumber = @42U;
2013-08-13 13:52:11 +00:00
unsigned int fortyTwoUnsigned = [fortyTwoUnsignedNumber unsignedIntValue];
2013-08-13 13:50:09 +00:00
NSLog(@"%u", fortyTwoUnsigned);
2013-08-13 14:04:20 +00:00
NSNumber *fortyTwoShortNumber = [NSNumber numberWithShort:42];
short fortyTwoShort = [fortyTwoShortNumber shortValue];
NSLog(@"%hi", fortyTwoShort);
2013-08-13 13:50:09 +00:00
NSNumber *fortyTwoLongNumber = @42L;
2013-08-13 13:52:11 +00:00
long fortyTwoLong = [fortyTwoLongNumber longValue];
2013-08-13 13:50:09 +00:00
NSLog(@"%li", fortyTwoLong);
// Floating point literals
NSNumber *piFloatNumber = @3.141592654F;
2013-08-13 13:52:11 +00:00
float piFloat = [piFloatNumber floatValue];
2013-08-13 13:50:09 +00:00
NSLog(@"%f", piFloat);
NSNumber *piDoubleNumber = @3.1415926535;
2013-08-13 13:52:11 +00:00
piDouble = [piDoubleNumber doubleValue];
2013-08-13 13:50:09 +00:00
NSLog(@"%f", piDouble);
2013-08-13 12:32:20 +00:00
2013-08-13 13:25:47 +00:00
// BOOL literals
2013-08-13 13:50:09 +00:00
NSNumber *yesNumber = @YES;
NSNumber *noNumber = @NO;
// Array object
NSArray *anArray = @[@1, @2, @3, @4];
NSNumber *thirdNumber = anArray[2];
NSLog(@"Third number = %@", thirdObject); // Print "Third number = 3"
// Dictionary object
NSDictionary *aDictionary = @{ @"key1" : @"value1", @"key2" : @"value2" };
NSObject *valueObject = aDictionary[@"A Key"];
NSLog(@"Object = %@", valueObject); // Print "Object = (null)"
2013-08-13 12:32:20 +00:00
2013-08-13 14:04:20 +00:00
///////////////////////////////////////
// Operators
///////////////////////////////////////
2013-08-13 13:25:47 +00:00
// Clean up the memory you used into your program
[pool drain];
2013-08-13 14:04:20 +00:00
// End the program
2013-08-13 13:25:47 +00:00
return 0;
}
2013-08-13 12:32:20 +00:00
2013-08-13 13:25:47 +00:00
///////////////////////////////////////
// Classes And Functions
///////////////////////////////////////
2013-08-13 12:32:20 +00:00
// Declare your class in a header(.h) file:
2013-08-13 13:25:47 +00:00
@interface UserObject : NSObject
{
// instance variables
2013-08-13 12:32:20 +00:00
}
// Class method
2013-08-13 13:25:47 +00:00
+ (NSString *)classMethod;
2013-08-13 12:32:20 +00:00
// Instance method
2013-08-13 13:25:47 +00:00
- (NSString *)instanceMethodWithParmeter:(NSString *)string;
2013-08-13 12:32:20 +00:00
@end
2013-08-13 13:25:47 +00:00
// Implement the methods in an implementation (.m) file:
2013-08-13 12:32:20 +00:00
@implementation UserObject
2013-08-13 13:25:47 +00:00
+ (NSString *)classMethod
{
return @"SomeString";
2013-08-13 12:32:20 +00:00
}
2013-08-13 13:25:47 +00:00
- (NSString *)instanceMethodWithParmeter:(NSString *)string
2013-08-13 12:32:20 +00:00
{
2013-08-13 13:25:47 +00:00
return @"New string";
2013-08-13 12:32:20 +00:00
}
2013-08-13 13:25:47 +00:00
- (NSNumber *)methodAParameterAsString:(NSString*)string andAParameterAsNumber:(NSNumber *)number
2013-08-13 12:32:20 +00:00
{
2013-08-13 13:25:47 +00:00
return @42;
2013-08-13 12:32:20 +00:00
}
2013-08-13 13:25:47 +00:00
2013-08-13 12:32:20 +00:00
@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 12:45:49 +00:00
[Learning Objective-C](http://developer.apple.com/library/ios/referencelibrary/GettingStarted/Learning_Objective-C_A_Primer/)
2013-08-13 12:32:20 +00:00
[iOS For High School Students: Getting Started](http://www.raywenderlich.com/5600/ios-for-high-school-students-getting-started)