Objective-C 基础语法

如果想从事iPhone开发的话 Objective-C 这门语言就不得不学会 我们都知道C语言是没有面向对象的 而Object-C 则是ANSI C 的一个严格超集 它是具有面向对象的特性的 由于IPHONE 的成功 让这门语言现在非常的火热 今天笔者为大家介绍一下在xcode中 使用Objective-C 的基本语法。

1.打开mac系统中强大的Xcode软件 单击Create a new Xcode project  创建一个Xcode项目。

Objective-C 基础语法

2. 选择“View-based Application” 因为只是介绍基本语法 所以 “View-based Application” 已经够用了 。 选择完后  点击Next 。

Objective-C 基础语法

3.输入相应的信息后点击Next。


Product Name: 指产品名称 ,可以随意命名。

Company Identifier: 公司标识符,一般命名规则为 “com.公司名”

Bundle Identifier: 指包标识符,用于唯一标识应用程序,默认会根据公司标识符和产品名来组合生成

Device Family: 指该应用支持的设备类型,共三个选项:iPhone、iPad、Universal(即iPhone、iPad通用)

Include Unite Tests: 是否包含单元测试代码模板,如果勾选,Xcode会帮助生成单元测试代码模板

Objective-C 基础语法

这样 我们的第一个项目就创建好了,接下来开始为大家介绍 Objective-C 的语法

在项目视图中 打开 helloWorldViewController.m文件 找到 - (void)viewDidLoad 方法 (这个方法每次启动程序都会调用 ) 

学过C++的朋友应该都知道 新写一个类会有 一个.h 声明类的变量 方法等 .cpp 用来实现方法  Objective-C   则也类似C++  .h 声明类的变量 方法  .m 用来实现方法

在c语言中 我们在控制台输出信息是用printf()   Java语言则是 System.out.println() 而Objective-C  则是用 NSLog();

打开控制台的快捷键为 command + shift + R

 Objective-C 基础语法

 
  1. //   
  2. //  helloWorldViewController.m   
  3. //  helloWorld   
  4. //   
  5. //  Created by  宣雨松 on 11-7-4.   
  6. //  Copyright 2011年 __MyCompanyName__. All rights reserved.   
  7. //   
  8.   
  9. #import "helloWorldViewController.h"   
  10. #import "MyClass.h"//导入新写的类   
  11.   
  12. @implementation helloWorldViewController  
  13.   
  14. - (void)dealloc  
  15. {  
  16.     [super dealloc];  
  17.      
  18. }  
  19.   
  20. - (void)didReceiveMemoryWarning  
  21. {  
  22.     // Releases the view if it doesn't have a superview.   
  23.     [super didReceiveMemoryWarning];  
  24.       
  25.     // Release any cached data, images, etc that aren't in use.   
  26. }  
  27.   
  28. #pragma mark - View lifecycle   
  29.   
  30.   
  31. // Implement viewDidLoad to do additional setup after loading the view, typically from a    
  32.   
  33. nib.  
  34. - (void)viewDidLoad  
  35. {  
  36.     [super viewDidLoad];  
  37.       
  38.         //打印一个字符串   
  39.     NSLog(@"only log hello world");   
  40.       
  41.     //字符串相加           
  42.     NSString *str;      
  43.     NSString *str1 = @"plusA ";      
  44.     NSString *str2 = @"+";    
  45.     NSString *str3 = @"plusB";       
  46.     // 把str1 str2 str3 相加后赋值给str %@ 表示是一个对象 这里也可以用 %d  %s 在这里就不一一举例了。          
  47.     str = [NSString stringWithFormat:@"%@ %@ %@",str1,str2,str3];           
  48.     //打印出str         
  49.     NSLog(@"string plus %@",str);            
  50.     //self 好比C++ 或者 java 语言中的 this 指针 指向本类 这里调用了本类的 putString方法 将字符串"pass string"作为参数传递了进去      
  51.     [self putString:@"pass string"];              
  52.     //在内存中new了一个MyClass的对象  alloc是在内存中 分配内存  init 则是初始化 这样写 属于规定写法            
  53.     MyClass * myclass = [[MyClass alloc] init];  
  54.     // 用myclass指针调用 类中putclass方法 将字符串 "pass class string"作为参数传递进去        
  55.     [myclass putclass:@"pass class string"];   
  56.     //调用类中静态方法 将字符串"static pass class string "作为参数传递进去       
  57.     [MyClass staticPutClass:@"static pass class string"];  
  58. }  
  59.   
  60.   
  61. - (void)viewDidUnload  
  62. {  
  63.     [super viewDidUnload];  
  64.     // Release any retained subviews of the main view.   
  65.     // e.g. self.myOutlet = nil;   
  66. }  
  67.   
  68. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation  
  69. {  
  70.     // Return YES for supported orientations   
  71.     return (interfaceOrientation == UIInterfaceOrientationPortrait);  
  72. }  
  73.   
  74. //自己写的类方法输出字符串   
  75. -(void)putString:(NSString *)str  
  76. {  
  77.     NSLog(@"%@",str);  
  78. }  
  79.   
  80.   
  81. @end  

//这个类的声明

  1. #import <UIKit/UIKit.h>   
  2.   
  3. @interface helloWorldViewController : UIViewController {  
  4.       
  5. }  
  6.   
  7. -(void) putString:(NSString*)str;   
  8.   
  9. @end  
MyClass类的实现
  1. #import "MyClass.h"   
  2.   
  3.   
  4. @implementation MyClass  
  5.   
  6. //方法前是-号的说明这是一个实力方法 必需本类new过才能调用   
  7. -(void)putclass:(NSString *)str  
  8. {  
  9.     NSLog(@"%@",str);  
  10. }  
  11. //方法前是+号的说明这是一个类方法 这种方法无权访问实例变量   
  12. //这里声明了一个静态方法 无需本类new过也可以调用   
  13.  +(void)staticPutClass:(NSString *)str{  
  14.     NSLog(@"%@",str);  
  15. }  
  16. @end  
MyClass类的声明
  1. #import <Foundation/Foundation.h>   
  2.   
  3.   
  4. @interface MyClass :NSObject{  
  5.       
  6. }  
  7. -(void) putclass : (NSString *) str;  
  8.   
  9. +(void) staticPutClass :(NSString *) str;  
  10. @end  

这样Objective-C 基本的语法就给大家介绍完了, 希望有兴趣的朋友可以和我一起讨论 我们可以一起进步。

相关推荐