this fails for me on the mac on line 3 that tries to set the new key @"1". only the first setting for a key ever succeeds
assert([Lockbox setString:@"1" forKey:@"test"]);
assert([[Lockbox stringForKey:@"test"] isEqualToString:@"1"]);
assert([Lockbox setString:@"2" forKey:@"test"]);
assert([[Lockbox stringForKey:@"test"] isEqualToString:@"2"]);
this fails for me on the mac on line 3 that tries to set the new key @"1". only the first setting for a key ever succeeds