本章学习类容
1.选择器的概念及使用
2.类别的语法
3.类扩展的语法
创建一个dog类
方法
dog.h
#import<Fondation/Foundation.h>
-(void)printDogInfomation;
-(void)dogEat;
-(void)dogBark:(NSNumber *)numberl
dog.m
实现
#import<Fondation/Foundation.h>
#import "Dog.h"
//类扩展
@interface Dog()//括号中没有任何内容
{
NSInterger _age;//实例变量 放在类扩展中为私有的
}
//setter,getter方法放在类扩展中是私有的
@property(nonatomic,assign)NSInteger age;
-(void)pringDogInfomation{
self.age=12;//只能通过self方法传入固定值
NSLog(@"name=%@ age=%li',_name,self.age);
}
@end
@implementation Dog
-(void)dogEat{
NSLog(@"Dog like to eat bone!!!"
}
-(void)dogBark:(NSNumber *)number
NSInterger cnt=[number intValue];
for(NSInteger i=0;i
NSLog(@"want wang wang ...")
}
{
-(void)printDogInfomation;
@end
main方法
#import <Foundation/Foundation>
#import 'dog.h';
#import"og+print.h"//使用类别中扩展的方法,需要包含类别所在的头文件
#import "NSString-Reverse.h"
//1.选择器:选择器是发送消息的机制,通过@selector(方法名)或者创建 SEL 类型的变理来调用执行方法
//C语方函数指针
int add(int a,int b){
return a+b;
}
//类别:主要给类扩展方法,通常类中提供的方法不符合需求,可以通过类别的语法,给类扩展方法
//类别只能扩展方法,不能扩展实例变量
//类扩展:给类扩展实例变理及方法,实现实例变量及方法的私有化
int main(int argc,const chart *argv[ ]){
@autoreleasepool{
//直接通过函数名调用
NSLog(@"add=%i",add(3,5));
打印结果:add=8
//通过函数指针调用函数
int(*pfunction) (int,int)=add;
NSLog(@"add=%i",pfunction(10,5));
打印结果add=15
//通过选择器发送消息
//通过方法名生成选择器
//选择器是运行时的概念,选择中的方法只有在程序运行时,才检查选择器中的方法是否实现
SEL sel=@selector(dogEat);
Dox=xiaoBai=[[Dog alloc] init];
//执行选择器中保存的方法
//对于选择器中保存的方法需要判断选择器中的方法是否实现
if(xaio Bai respondsToSelector:sel])
{
//消除内存警告
#pragma clang diagnostic ignored"-Warc-performSelector-leaks"
[xiaoBai performSelector:Sel]
//方法2对像调用方法
[xiaoBai dogEat];
打印结果 Dog like to eat bone!!!
}
//用方法名的字符串对像生成选择器
SEL *sel2=NSSelectorFromString(@"dogBark:");
if(xaio Bai respondsToSelector:sel2])
{
[xioa Bai performSelector:sel2 withObject:[NSNumber numberWithInt:5]];
//打印结果:want wang wang ...
want wang wang ...
want wang wang ...
want wang wang ...
want wang wang ...
}
//用方法名的C语方字符串生成选择器
SEL sel3=sel_getUid("dogBark:")
if(xaio Bai respondsToSelector:sel3])
[
【xiaoBai dogBark:NSNumber numberWithInt:10】
//打印10次 want wang wang ...
}
获取选择器中的方法名
1.方法名字符串对像
NSLog(@"name=%@",NSStringFromSelector(sel));
打印结果“name=dogEat
2.C语方的字符串
NSLog(@"name=%s", sel_getName(sel2));
打印结果 name=dogBark
}
//可变数组
NSMutableArrar *nameArray=[NSMutableArray arrayWithObjects:"xiaohua",@"xiaoMing",@"xiaoFei",nil];
//回调:传入选择器作为方法的参数
//功能实现:按名称排序(compare :比较方法)
【nameArray sortUsingSelector:@selector(compare:)];
NSLog(@"nameArray=",nameArray);
打印结果:nameArray={
xiaoFei,
xiaoHua,
xiaoHui,
xiaoMing
}
//类别 调用类别当中的方法
Dod *xiiaoHei=[Dog alloc]init];
xiaoHei.name=@"小黑";
NSLog(xioaHei printDog);
打印结果:name=小黑
NSLog(@"string=%@",[NSString reverseString:@"hello 中国"】);
打印结果:国中 olleh
//类扩展
Dog *xiaoHua=[[Dog alloc]init];
xioaHua.name=@"小花";
xioaHua.age//在类别中不能访问
[xiaoHua pringDogInforMation];
打印结果:name=小花 age=12;
return 0;
}
//给dog类扩展一个print方法
dog-pring.h
//@interface Dog(print 类别名)//类别名不能省略
@interface Dog(print)
-(void)printdog;
dog-pring.m
@inplementation Dog(print)
+(void)printdog{
NSLog(@name=%@,_name);
}
@end
//给NSString类扩展一个方法,翻转字符串
注:类别作用,给类添加方法,扩展方法
NSString-Reverse.h
#import <foundation/Foundation.h>
@interface NSString (Reverse)
+(NSString *)reverseString:(NSString *)aString
NSString-Reverse.m
#import "NSString-Reverse.h"
@implementtation NSString (Reverse)
-(NSString *)revrseString:(NSString *)aString{
//将返回的字符串写入这个空串中
NSString *str=@"";
for(NSInteger i=aString.length-1;i>=0;i--){
//生成一逆序字符串对像,追加到字符串后面
str=[str stringByappendingString:[NSString stringWithFormat:@"%c",[aString characterAtIndex:i]]];
}
//返回字符串
retrn str;
}
网友评论