more access stuff and removed some unnecessary files
This commit is contained in:
parent
6f3b689c3d
commit
c66ec0f8e9
339 changed files with 158 additions and 13855 deletions
|
@ -21,9 +21,21 @@
|
|||
return self;
|
||||
}
|
||||
|
||||
- (void)setString:(NSString *)string forKey:(NSString *)aKey
|
||||
{
|
||||
NSLog(@"Saving: %@ %@", string, aKey);
|
||||
[d setObject:string forKey:aKey];
|
||||
[d synchronize];
|
||||
}
|
||||
|
||||
- (NSString *)stringForKey:(NSString *)aKey
|
||||
{
|
||||
NSLog(@"%@", [d objectForKey:aKey]);
|
||||
return [d objectForKey:aKey];
|
||||
}
|
||||
|
||||
- (void)setAccessToken:(NSString *)_accessToken
|
||||
{
|
||||
[d setObject:_accessToken forKey:@"accessToken"];
|
||||
[d synchronize];
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue