我正在尝试从用户默认值中的特定键中删除特定值。我已尝试过堆栈溢出的许多解决方案但失败了。我写的代码是
NSMutableArray *arr_social_placeholders = [[NSMutableArray alloc] initWithObjects:@"facebook", @"twitter", @"linkedin", nil];
pref = [NSUserDefaults standardUserDefaults];
[pref removeObjectForKey:[arr_social_placeholders objectAtIndex:indexPath.row]];
执行此操作时,我遇到异常,最后以消息
终止来自调试器的消息:由于信号9终止
怎么过来呢?