Swift implements object archiving

Source: Internet
Author: User

There are several points to note when Swift implements object archiving
    • To inherit nscoding, implement two methods

    • Extension is a classification, the classification does not allow storage capacity, so the protocol method can not be written in the classification

    • The init (coder Decoder:nscoder) function in the protocol overrides the original constructor, so there is at least another Init method in the class

    • If you do not specify a key name, the attribute name is used as the key, the base data type, and the key must be specified

class <#className#>: NSObject,NSCoding {    // 至少要有一个 init 方法,否则外部没有办法直接实例化对象    // override init() {}    ///  归档方法    func encodeWithCoder(encoder: NSCoder) {        // TODO    }    ///  解档方法,会覆盖构造函数    required init(coder decoder: NSCoder) {        // TODO    }}

Swift implements object archiving

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.