learnxinyminutes-docs/objective-c.html.markdown

285 lines
7.8 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.
*/
2013-08-13 16:56:09 +04:00
// Imports the Foundation headers with #import
#import <Foundation/Foundation.h>
2013-08-13 18:50:22 +04:00
#import "MyClass.h"
2013-08-13 16:56:09 +04:00
// 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 18:04:20 +04:00
// Create an autorelease pool to manage the memory into the program
2013-08-13 16:56:09 +04:00
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
2013-08-13 17:25:47 +04:00
// Use NSLog to print lines to the console
2013-08-13 17:50:09 +04:00
NSLog(@"Hello World!"); // Print the string "Hello World!"
2013-08-13 16:56:09 +04:00
2013-08-13 18:04:20 +04:00
///////////////////////////////////////
// Types & Variables
///////////////////////////////////////
// Primitive declarations
2013-08-13 18:09:38 +04:00
int myPrimitive1 = 1;
long myPrimitive2 = 234554664565;
2013-08-13 18:04:20 +04:00
// Object declarations
// Put the * in front of the variable names for strongly-typed object declarations
2013-08-13 18:09:38 +04:00
MyClass *myObject1 = nil; // Strong typing
id myObject2 = nil; // Weak typing
2013-08-13 17:50:09 +04:00
// %@ is an object
2013-08-13 18:07:58 +04:00
// 'description' is a convention to display the value of the Objects
NSLog(@"%@ and %@", myObject1, [myObject2 description]); // Print "(null) and (null)"
2013-08-13 18:04:20 +04:00
// String
NSString *worldString = @"World";
2013-08-13 17:50:09 +04:00
NSLog(@"Hello %@!", worldString); // Print "Hello World!"
// Character literals
2013-08-13 17:52:11 +04:00
NSNumber *theLetterZNumber = @'Z';
char theLetterZ = [theLetterZNumber charValue];
NSLog(@"%c", theLetterZ);
2013-08-13 16:56:09 +04:00
2013-08-13 17:50:09 +04:00
// Integral literals
NSNumber *fortyTwoNumber = @42;
2013-08-13 17:52:11 +04:00
int fortyTwo = [fortyTwoNumber intValue];
2013-08-13 17:50:09 +04:00
NSLog(@"%i", fortyTwo);
NSNumber *fortyTwoUnsignedNumber = @42U;
2013-08-13 17:52:11 +04:00
unsigned int fortyTwoUnsigned = [fortyTwoUnsignedNumber unsignedIntValue];
2013-08-13 17:50:09 +04:00
NSLog(@"%u", fortyTwoUnsigned);
2013-08-13 18:04:20 +04:00
NSNumber *fortyTwoShortNumber = [NSNumber numberWithShort:42];
short fortyTwoShort = [fortyTwoShortNumber shortValue];
NSLog(@"%hi", fortyTwoShort);
2013-08-13 17:50:09 +04:00
NSNumber *fortyTwoLongNumber = @42L;
2013-08-13 17:52:11 +04:00
long fortyTwoLong = [fortyTwoLongNumber longValue];
2013-08-13 17:50:09 +04:00
NSLog(@"%li", fortyTwoLong);
// Floating point literals
NSNumber *piFloatNumber = @3.141592654F;
2013-08-13 17:52:11 +04:00
float piFloat = [piFloatNumber floatValue];
2013-08-13 17:50:09 +04:00
NSLog(@"%f", piFloat);
NSNumber *piDoubleNumber = @3.1415926535;
2013-08-13 17:52:11 +04:00
piDouble = [piDoubleNumber doubleValue];
2013-08-13 17:50:09 +04:00
NSLog(@"%f", piDouble);
2013-08-13 16:32:20 +04:00
2013-08-13 17:25:47 +04:00
// BOOL literals
2013-08-13 17:50:09 +04: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 16:32:20 +04:00
2013-08-13 18:04:20 +04:00
///////////////////////////////////////
// Operators
///////////////////////////////////////
2013-08-13 18:22:40 +04:00
// The operators works like in the C language
// For example:
2013-08-13 18:32:16 +04:00
2 + 5; // => 7
4.2f + 5.1f; // => 9.3f
2013-08-13 18:22:40 +04:00
3 == 2; // => 0 (NO)
3 != 2; // => 1 (YES)
1 && 1; // => 1 (Logical and)
0 || 1; // => 1 (Logical or)
~0x0F; // => 0xF0 (bitwise negation)
0x0F & 0xF0; // => 0x00 (bitwise AND)
0x01 << 1; // => 0x02 (bitwise left shift (by 1))
///////////////////////////////////////
// Control Structures
///////////////////////////////////////
// If-Else statement
if (NO)
{
NSLog(@"I am never run");
} else if (0)
{
NSLog(@"I am also never run");
} else
{
NSLog(@"I print");
}
// Switch statement
2013-08-13 18:32:16 +04:00
switch (2)
{
2013-08-13 18:22:40 +04:00
case 0:
{
NSLog(@"I am never run");
} break;
case 1:
{
NSLog(@"I am also never run");
} break;
default:
{
NSLog(@"I print");
} break;
}
2013-08-13 18:32:16 +04:00
// While loops statements
2013-08-13 18:22:40 +04:00
int ii = 0;
while (ii < 4)
{
NSLog(@"%d,", ii++); // ii++ increments ii in-place, after using its value.
2013-08-13 18:32:16 +04:00
} // => prints "0,"
2013-08-13 18:34:12 +04:00
// "1,"
// "2,"
// "3,"
2013-08-13 18:22:40 +04:00
2013-08-13 18:32:16 +04:00
// For loops statements
2013-08-13 18:22:40 +04:00
int jj;
for (jj=0; jj < 4; jj++)
{
NSLog(@"%d,", ii++);
2013-08-13 18:32:16 +04:00
} // => prints "0,"
2013-08-13 18:34:12 +04:00
// "1,"
// "2,"
// "3,"
2013-08-13 18:22:40 +04:00
2013-08-13 18:32:16 +04:00
// Foreach statements
2013-08-13 18:22:40 +04:00
NSArray *values = @[@0, @1, @2, @3];
for (NSNumber *value in values)
{
NSLog(@"%@,", value);
2013-08-13 18:32:16 +04:00
} // => prints "0,"
2013-08-13 18:34:12 +04:00
// "1,"
// "2,"
// "3,"
2013-08-13 18:04:20 +04:00
2013-08-13 18:32:16 +04:00
// Try-Catch-Finally statements
@try
{
// Your statements here
@throw [NSException exceptionWithName:@"FileNotFoundException" reason:@"File Not Found on System" userInfo:nil];
} @catch (NSException * e)
{
NSLog(@"Exception: %@", e);
} @finally
{
NSLog(@"Finally");
} // => prints "Exception: File Not Found on System"
2013-08-13 18:34:12 +04:00
// "Finally"
2013-08-13 18:32:16 +04:00
2013-08-13 18:49:23 +04:00
///////////////////////////////////////
// Objects
///////////////////////////////////////
// Create an object instance by allocating memory and initializing it.
// An object is not fully functional until both steps have been completed.
MyClass *myObject = [[MyClass 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.
[myObject instanceMethodWithParmeter:@"Steve Jobs"];
2013-08-13 17:25:47 +04:00
// Clean up the memory you used into your program
[pool drain];
2013-08-13 18:04:20 +04:00
// End the program
2013-08-13 17:25:47 +04:00
return 0;
}
2013-08-13 16:32:20 +04:00
2013-08-13 17:25:47 +04:00
///////////////////////////////////////
// Classes And Functions
///////////////////////////////////////
2013-08-13 16:32:20 +04:00
2013-08-13 18:50:22 +04:00
// Declare your class in a header(MyClass.h) file:
2013-08-13 18:46:16 +04:00
// Class Declaration Syntax:
// @interface <class name> : <parent classname>
// {
// Member variable declarations;
// }
// -/+ (type) Method declarations;
// @end
@interface MyClass : NSObject
2013-08-13 17:25:47 +04:00
{
2013-08-13 18:46:16 +04:00
int count;
id data;
NSString *name;
2013-08-13 16:32:20 +04:00
}
2013-08-13 18:46:16 +04:00
// Create the public getter/setter for the variable count
@property(assign) int count;
// Methods
+/- (return type)methodSignature:(Parameter Type *)parameterName;
2013-08-13 16:32:20 +04:00
2013-08-13 18:46:16 +04:00
// + for class method
2013-08-13 17:25:47 +04:00
+ (NSString *)classMethod;
2013-08-13 16:32:20 +04:00
2013-08-13 18:46:16 +04:00
// - for instance method
2013-08-13 17:25:47 +04:00
- (NSString *)instanceMethodWithParmeter:(NSString *)string;
2013-08-13 18:46:16 +04:00
- (NSNumber *)methodAParameterAsString:(NSString*)string andAParameterAsNumber:(NSNumber *)number;
-
2013-08-13 16:32:20 +04:00
@end
2013-08-13 18:50:22 +04:00
// Implement the methods in an implementation (MyClass.m) file:
2013-08-13 16:32:20 +04:00
@implementation UserObject
2013-08-13 18:46:16 +04:00
// Constructors are a way of creating classes
// This is a default constructor
- (id)init
{
if ((self = [super init]))
{
self.count = 1;
}
return self;
}
2013-08-13 17:25:47 +04:00
+ (NSString *)classMethod
{
2013-08-13 18:46:16 +04:00
return [[self alloc] init];
2013-08-13 16:32:20 +04:00
}
2013-08-13 17:25:47 +04:00
- (NSString *)instanceMethodWithParmeter:(NSString *)string
2013-08-13 16:32:20 +04:00
{
2013-08-13 17:25:47 +04:00
return @"New string";
2013-08-13 16:32:20 +04:00
}
2013-08-13 17:25:47 +04:00
- (NSNumber *)methodAParameterAsString:(NSString*)string andAParameterAsNumber:(NSNumber *)number
2013-08-13 16:32:20 +04:00
{
2013-08-13 17:25:47 +04:00
return @42;
2013-08-13 16:32:20 +04:00
}
2013-08-13 17:25:47 +04:00
2013-08-13 16:32:20 +04:00
@end
```
## 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)