diff --git a/platform/secure_storage_ios.mm b/platform/secure_storage_ios.mm index e738590b14..9d8293bb87 100644 --- a/platform/secure_storage_ios.mm +++ b/platform/secure_storage_ios.mm @@ -1,20 +1,31 @@ #include "platform/secure_storage.hpp" +#import + namespace platform { + +NSString * StorageKey(std::string const & key) +{ + return [NSString stringWithFormat:@"Maps.me::PlatrormKey::%@", @(key.c_str())]; +} + void SecureStorage::Save(std::string const & key, std::string const & value) { - // TODO: implement @igrechuhin + [NSUserDefaults.standardUserDefaults setObject:@(value.c_str()) forKey:StorageKey(key)]; } bool SecureStorage::Load(std::string const & key, std::string & value) { - // TODO: implement @igrechuhin - return false; + NSString * val = [NSUserDefaults.standardUserDefaults objectForKey:StorageKey(key)]; + if (!val) + return false; + value = val.UTF8String; + return true; } void SecureStorage::Remove(std::string const & key) { - // TODO: implement @igrechuhin + [NSUserDefaults.standardUserDefaults removeObjectForKey:StorageKey(key)]; } } // namespace platform