欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

KVC使用小例子

程序员文章站 2022-05-31 21:38:28
...
实例介绍

创建一个学生对象和一个课程对象,演示:

  • 1、KVC基本使用
  • 2、键路径取值使用场景
  • 3、自动封装基本数据类型
  • 4、操作集合

#import "ViewController.h"
#import "Student.h"
#import "Course.h"

@interface ViewController ()
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    Student *student = [[Student alloc] init ];
    
    // 1、使用KVC
    [student setValue:@"猪哥哥" forKey:@"name"];
    NSString *name = [student valueForKey:@"name"];
    NSLog(@"学生姓名:%@",name);
    
    Course *course = [[Course alloc] init];
    [course setValue:@"语文课" forKey:@"CourseName"];
    [student setValue:course forKey:@"course"];
    NSString *courseName = [student valueForKeyPath:@"course.CourseName"];
    NSLog(@"课程名称:%@", courseName);
    
    // 2、键路径访问属性
    [student setValue:@"数学课" forKeyPath:@"course.CourseName"];
    courseName = [student valueForKeyPath:@"course.CourseName"];
    NSLog(@"课程名称:%@", courseName);
    
    // 3、自动封装基本数据类型
    [student setValue:@"88" forKeyPath:@"point"];
    NSString *point = [student valueForKey:@"point"];
    NSLog(@"分数:%@", point);
    
    // 4、操作集合【在Student类中加入数组NSArray,用来表示其他的学生。这样我们可以添加多个其他的学生,再用集合操作计算学生的分数,最高分,最低分,平均分等】
    Student *student1 = [[Student alloc] init ];
    Student *student2 = [[Student alloc] init ];
    Student *student3 = [[Student alloc] init ];
    [student1 setValue:@"65" forKey:@"point"];
    [student2 setValue:@"77" forKey:@"point"];
    [student3 setValue:@"99" forKey:@"point"];
    NSArray *array = [NSArray arrayWithObjects:student1,student2,student3,nil];
    [student setValue:array forKey:@"otherStudent"];
    NSLog(@"其他学生的成绩%@", [student valueForKeyPath:@"otherStudent.point"]);
    NSLog(@"共%@个学生", [student valueForKeyPath:@"[email protected]"]);
    NSLog(@"最高成绩:%@", [student valueForKeyPath:@"[email protected]"]);
    NSLog(@"最低成绩:%@", [student valueForKeyPath:@"[email protected]"]);
    NSLog(@"平均成绩:%@", [student valueForKeyPath:@"[email protected]"]);
    NSLog(@"总成绩:%@", [student valueForKeyPath:@"[email protected]"]);
}
@end

其中:Student类和Course类头文件(.m文件什么也不实现,Course也是一样)


#import <UIKit/UIKit.h>

@class Course;
@interface Student : NSObject
{
    NSString *name;
    Course *course;
    NSInteger point;
    NSArray *otherStudent;
}
@end

#import <Foundation/Foundation.h>

@interface Course : NSObject
{
    NSString *CourseName;
}
@end

打印结果:

2017-01-23 11:41:36.899 KVC1[12304:3170161] 学生姓名:猪哥哥
2017-01-23 11:41:36.900 KVC1[12304:3170161] 课程名称:语文课
2017-01-23 11:41:36.900 KVC1[12304:3170161] 课程名称:数学课
2017-01-23 11:41:36.900 KVC1[12304:3170161] 分数:88
2017-01-23 11:41:36.901 KVC1[12304:3170161] 其他学生的成绩(
    65,
    77,
    99
)
2017-01-23 11:41:36.901 KVC1[12304:3170161] 共3个学生
2017-01-23 11:41:36.901 KVC1[12304:3170161] 最高成绩:99
2017-01-23 11:41:36.902 KVC1[12304:3170161] 最低成绩:65
2017-01-23 11:41:36.902 KVC1[12304:3170161] 平均成绩:80.333333333333333333333333333333333333
2017-01-23 11:41:36.903 KVC1[12304:3170161] 总成绩:241

参考:Objective-C语法之KVC使用

上一篇: npm包的发布

下一篇: NProgress进度条