如何删除NSUserdefaults中某些特定键的值?

时间:2017-08-14 12:30:44

标签: objective-c arrays uitableview nsuserdefaults

我正在尝试从用户默认值中的特定键中删除特定值。我已尝试过堆栈溢出的许多解决方案但失败了。我写的代码是

NSMutableArray *arr_social_placeholders = [[NSMutableArray alloc] initWithObjects:@"facebook", @"twitter", @"linkedin", nil];
pref = [NSUserDefaults standardUserDefaults];
[pref removeObjectForKey:[arr_social_placeholders objectAtIndex:indexPath.row]];

执行此操作时,我遇到异常,最后以消息

终止
  

来自调试器的消息:由于信号9终止

怎么过来呢?

0 个答案:

没有答案