字典
一、选择器
//SEl类型 选择器类型,与C语言中的函数指针类型
//@selector得到某个方法的SEL类型变量
SEL sel = @selector(bark);
ARC环境下,调用sel会告警,需要增加如下代码:
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
//respondsToSelector判断sel对应的方法是否存在
if([dog respondsToSelector:sel]){
//通过performSelector执行sel对应的方法
[dog performSelector:sel];
}
#pragma clang diagnostic pop
二、类别
对原有的类增补方法
创建类别:
//括号中表示类别名称
@interface NSString (Print)
//类别中不能增加成员变量
//{
// NSInteger _age;
//}
//可以声明多个方法,- / + 方法都可以
//类别中增补的-方法可以访问成员变量
//增补的-方法可以访问类中其他—方法
//给NSString类增加一个方法,该方法实现打印字符串的功能
- (void)printInfo;
@end
作用:
可以给系统类或第三方类库增加方法
可以将方法分布在不同文件中,减小文件的大小
练习:
给NSString 添加一个方法,返回这个字符串正中间的字符。 如@"12345", 返回‘3’,
如@"1234", 返回 ‘2’。
- (unichar)midOfString;
思考:
通过类别给NSMutableArray增加一个排序方法
- (void)mySort:(SEL)sel;
三、字典
字典中存放的内容 键值对
key — value/object
字典中key值唯一,但是不同的key值可以有相同的value
字典中的数据是无序存放的
1、不可变字典NSDictionary
(1)创建字典
NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:@"1", @"one", @"2", @"two", @"3", @"three", nil];
//通过一个字典对象创建一个新的字典对象
NSDictionary *dic1 = [[NSDictionary alloc] initWithDictionary:dic];
//通过类方法创建字典
NSDictionary *dic2 = [NSDictionary dictionaryWithObjectsAndKeys:@"4", @"four", @"5", @"five", @"5", @"hello", nil];
NSDictionary *dic3 = [NSDictionary dictionaryWithDictionary:dic2];
(2)获取键值对个数
NSUInteger count = [dic3 count];
(3)查找功能
//根据key查找value
NSString *str = [dic3 objectForKey:@"four"];
id obj = [dic3 objectForKey:@"four"];
(4)用快速枚举遍历
//根据key值遍历字典
for (NSString *key in dic3) {
NSLog(@"%@ %@", key, [dic3 objectForKey:key]);
}
(5)获取所有的key 和value
NSArray *arr = [dic3 allKeys];
NSArray *arr1 = [dic3 allValues];
//获取相同value的所有key值
NSArray *arr2 = [dic3 allKeysForObject:@"5"];
2、可变字典 NSMutableDictionary
三、字典
1、不可变字典
#创建字典#
NSDictionary *dict = [[NSDictionary alloc] initWithObjectsAndKeys:@"one", @"1", @"two", @"2", @"three", @"3", nil];
#键值对的个数#
NSInteger count = [dict count];
#通过键查找值#
NSString *str = [dict objectForKey:@"two”];
NSString *str = dict[@"two”];
#遍历#
for (NSString *str in dict) {
NSLog(@"%@", str); //遍历的是字典dict中的键
NSLog(@"%@", dict[str]);//遍历的是字典dict中的值
}
2、可变字典
#创建可变字典#
NSMutableDictionary * mdict = [[NSMutableDictionary alloc] initWithDictionary:dict];
#增加键值对#
[mdict setObject:@"four" forKey:@"4"];
#删除键值对#
[mdict5 removeObjectForKey:@“4”];//删除单个键
[mdict5 removeAllObjects];//全部删除
#字典替换#
NSDictionary * dict = @{@“3”:@“xixi", @"2":@"gogo"};
[mdict setDictionary:dict];//把字典mdict全部改为字典dict
练习:
1.创建学生类,成员变量有姓名,年龄和成绩。用学生类,创建三个学生对象,将三个学生添加到字典中,以学生的名字作为key。
输入一个学生的名字,打印出该学生的完整信息。
2 手机归属地。读取文件,提取相关信息(手机号和归属地),放到字典中,根据手机号,输出对应的归属地
作业:
1、NSMutableString 里面没有字符串逆序方法,添加一个这样的方法使字符串逆序
@"123"; @"321"
添加这个方法。
- (void)reverse;
2、给可变数组添加一个元素逆序的方法
- (void)reverse;
3 电子词典。读取文件,英文单词作为key,单词的解释作为value,放入字典。输入英文单词,显示对应的解释。