您好,欢迎光临本网站![请登录][注册会员]  
文件名称: ios初级笔记
  所属分类: iOS
  开发工具:
  文件大小: 21kb
  下载次数: 0
  上传时间: 2015-08-13
  提 供 者: u0137*****
 详细说明: ios初级代码 1.oc中的set和get方法 1>.首先NewFile创建类,选iOS中的Cocoa Touch,再点击Objective-C class,输入类名Student,作为NSobject(系统 自带)的子类 2>.在.h中做方法的声明 在Student.h中: //@interface代表声明一个类 // : 代表继承 #import @interface Student : NSObject{ //成员变量要定义在此{}中 int age; int no; } //age no 的get,set方法 //-代表调用动态方法,+代表静态方法 -(void)setAge:(int)newAge andNo:(int)newNo; //方法名是setage: andNo: 注:冒号也是方法名的一部分 -(int)age; //方法名是age -(int)no; @end 在Student.m中: #import "Student.h" @implementation Student - (int)age{ return age; } - (int)no{ return no; } - (void)setAge:(int)newAge andNo:(int)newNo { age=newAge; age=newNo; //self.age = newAge; //这是个错误的方法会导致死循环,相当于[self setAge] } @end 在main.m中: #import int main(int argc,const char * argv[]) { @autoreleasepool{ //创建对象,alloc方法,init方法都是继承NSlog Student *stu=[[student alloc] init]; //释放方法 [stu release] [stu setAge:20 andNo:3] NSLog(@"this age is:i% andNo:i%",[stu age],[stu no]) } return 0; } 2.点语法 以1为实例: stu.age = 10; //编译的时候调用的是:[stu setAge:10]; int a = stu.age; //编译的时候调用的是:[stu age]; 注:1>oc中的点不是成员变量的访问,是调用set,get方法 2>成员变量默认是@protected 3>当成员变量为@public时,外部直接访问用stu->name; 3.构造方法和description方法 1>.在student.h中 #import @interface student:NSObject{ //默认的是@protected int _age; int _no; } - (void)setAge:(int)age; - (void)setNo:(int)no; - (int)age; - (int)no; //自己写构造方法 - (id)initWithAge:(int)age andNo:(int)no; @end 2>.在student.m中 #import "student.h" @implementation student -(void)setAge:(int)age{ _age = age; } - (void)setNo:(int)no{ _no = no; } - (int)age{ return _age; } -(int)no{ return _no; } //实现构造方法 - (id)initWithAge:(int)age andNo:(int) no{ //首先要调用super的构造方法 //self = [super init]; //如果self不为nil if(self = [super init]){ _age = age; _no = no; } return self; } //重写父类的的description方法 //当使用%@带打印一个对象时候,会调用这个方法 - (NSString *)description{ NSString *str = [NSString stringWithFormat:@"age is %i and no is %i",_age,_no]; return str; } @end 3>.在main.m中: #import int main(int argc,const char * argv[]) { @autoleasepool{ student *stu = [[student alloc] initWithAge:100 andNo:20]; [stu release] //NSLog(@"this age is:i% this no is:i%",stu.age,stu.no); //%@代表打印一个oc对象 NSLog(@"%@",stu); } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: ios初级
 输入关键字,在本站1000多万海量源码库中尽情搜索: