Top "Nskeyedarchiver" questions

NSKeyedArchiver, a concrete subclass of NSCoder, provides a way to encode objects (and scalar values) into an architecture-independent format that can be stored in a file.

How to solve deprecation of unarchiveObject(withFile:)

With iOS 12.1, unarchiveObject(withFile:) was deprecated. How can you convert NSKeyedUnarchiver.unarchiveObject(withFile: String) to use a call to NSKeyedUnarchiver.…

ios swift nskeyedarchiver
Writing and reading custom object to file IOS

i have this object. @interface SeccionItem : NSObject <NSCoding> { NSString * title; NSString * texto; NSArray * images; } @property (nonatomic,strong) NSString * …

ios file nskeyedarchiver