iOS基础之Objective-C(一)

2016-09-27  本文已影响30人  SuAdrenine

OC面向对象新增语法:
1、属性生成器:


2、分类Category

例:


//Person+LP.h
#import"Person.h"
@interfacePerson(LP)
-(void)study;
@end

//Person+LP.m
#import"Person+LP.h"
@implementationPerson(LP)
-(void)study{
NSLog(@"正在学习----");
}
@end

//main.m
#import<Foundation/Foundation.h>
#import"Person.h"
#import"Person+LP.h"

intmain(intargc,constcharchar*argv[]){
@autoreleasepool{
Person*p1=[[Personalloc]initWithAge:33andName:@"jack"];
NSLog(@"年龄是:%d,名字是:%@",p1.age,p1.name);
//调用分类的方法
[p1study];
}
return0;
}

3、协议Protocol

@protocol MyProtocol
-(void)myProtocolMethod;
end

PS:分类,拓展与协议的区别
1、分类

//定义XYZPopViewController类的分类
//XYZPopViewController+CatController.h文件
@interfaceXYZPopViewController (CatController)
- (void)test;
@end

//XYZPopViewController+CatController.m文件
@implementationXYZPopViewController (CatController)
- (void)test {
NSLog(@"测试一下XYZPopViewController的分类");
}
@end

2、扩展

//定义XYZPopViewController类的扩展
//方式1、以单独的文件定义
//XYZPopViewController_ExViewController.h文件
#import"XYZPopViewController.h"

@interfaceXYZPopViewController()
@property(nonatomic,strong)NSString*stringOfEx;
- (void)testEx;@end

//方式2、在主类的.m文件中定义
//XYZPopViewController.m文件
#import"XYZPopViewController.h"

@interfaceXYZPopViewController()
@property(nonatomic,strong)NSString*stringOfEx;

- (void)testEx;
@end

@implementationXYZPopViewController
@end

//在主类的.m文件中实现扩展定的方法
#import"XYZPopViewController.h"
//import"XYZPopViewController_ExViewController.h"

@interfaceXYZPopViewController()

@end

@implementationXYZPopViewController
- (void)testEx {
  self.stringOfEx=@"给扩展里面定义的属性字符串赋值";
  NSLog(@"定义的属性String是:%@",self.stringOfEx);
}
@end

3、协议

#import<Foundation/Foundation.h>

@protocolXYZProtocolDelegate <NSObject>
-(void)changedColor:(UIColor*)color;
@end

//在对象A中定义一个协议类型的引用
@interfaceXYZPopViewController :UIViewController@property(nonatomic,weak)id<XYZProtocolDelegate> delegate;
@end
//A对象可以在合适的时候通过这个引用向遵守了协议的对象B发送消息(点击button发送一个消息)
- (void)buttonClick:(UIButton*)button {
[self.delegatechangedColor:[UIColoryellowColor]];
}
//对象B遵守协议
@interfaceXYZDetailViewController()<XYZProtocolDelegate>

@end
//对象B中实现协议要求的方法
- (void)changedColor:(UIColor*)color {
  self.textView.textColor= color;
}
//在对象B中得到对象A的引用,把A中定义的那个协议类型的引用指向自身(一般是在B中创建或者初始化A时)
XYZPopViewController*pVC = [[XYZPopViewControlleralloc]init];
pVC.delegate=self;
协议示意图

4、Fundation框架:


5、新增异常处理


PS:回顾一下C语言的那些内容

C语言
上一篇下一篇

猜你喜欢

热点阅读