ViewController.swift
import UIKit /* 在swift中 所有的类和类的方法 都是共享的 在同一个命名空间 所有的类都是共享的 命名空间 是项目名称 */ class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() //alloc init = () //自定义对象 打印内存是内存地址 let p = Person(dict: ["name":"zhangsan","age": 2,"tiile": "屌丝"]) print(p) } }
Person.swift
/* 构造函数 : 分配内存空间 设置初始值 () 在swift中 所有的构造方法 都是init 构造函数的责任就是 一定构造一个对象出来 重载: 函数名相同 参数的类型 以及参数的个数不同 就形成重载 是面向对象最显著的标志 极大简化 需要记住的函数名 一旦重载构造函数 默认的构造函数就不能访问 this class is not key value coding-compliant for the key tiile.' */ import UIKit class Person: NSObject { //默认值是 nil 没有分配空间 运行时临时分配内存空间 var name: String? // this class is not key value coding-compliant for the key age //在给对象转发 setValue: forKey: 判断对象的属性 是否为空 如果为空 就调用其构造方法 实例化 //基本数据类型 没有构造方法 不会被创建 // age和kVC不兼容 //基本数据类型 需要设置初始值 var age: Int = 0 //表示重写 表示重写父类的构造函数 //父类已经提供函数 子类需要对父类的函数进行扩展 //方法内 可以super. // override init() { // // // print("Person init") // name = "刘亦菲" // age = 30 //// super.init() //// name = "刘亦菲" // } //构造方法 init(name: String,age: Int) { //当属性名和参数名相同时 需要加上 self来区分 self.name = name self.age = age super.init() } //KVC构造 init(dict: [String : AnyObject]) { //KVC是OC特有的机制 OC可以和swift共存 //在运行时 给'对象' 转发 setValue: forKey: //KVC 通过键值编码 给对象的属性设置初始值 super.init() setValuesForKeysWithDictionary(dict) } override func setValue(value: AnyObject?,forKey key: String) { print(value,key) super.setValue(value,forKey: key) } //过滤掉 不存的在属性对应的key override func setValue(value: AnyObject?,forUndefinedKey key: String) { print(value,key) // super.setValue(value,forUndefinedKey: key) } }原文链接:https://www.f2er.com/swift/324964.html