我有一个UITableView,它由NSMutableDictionary中的数组键填充。
为了能够删除这些数组,我需要能够以某种方式获取密钥。我最简单的想法是从行的标签中获取它。
我正在使用此代码加载字典:
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
// get documents path
NSString *documentsPath = [paths objectAtIndex:0];
// get the path to our Data/plist file
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Data.plist"];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithContentsOfFile:(NSString *)plistPath];
这将从字典中删除数组:
[dictionary removeObjectForKey:];
但显然我错过了关键因为我不知道如何以编程方式抓住它。有什么提示吗?
干杯,
克里斯
<plist version="1.0">
<dict>
<key>(null)</key>
<array>
<string>Username</string>
<string>Password</string>
<string>http://www.google.com</string>
<string>/whatever</string>
</array>
<key>Hello</key>
<array>
<string>admin</string>
<string></string>
<string>https://www.whatever.com</string>
<string>/things</string>
</array>
</dict>
</plist>
的cellForRowAtIndexPath:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ViewerName"];
UILabel *label = (UILabel *)[cell viewWithTag:1000];
label.text = [viewerKeys objectAtIndex:indexPath.row];
return cell;
}
删除代码:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
NSArray *paths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
// get documents path
NSString *documentsPath = [paths objectAtIndex:0];
// get the path to our Data/plist file
NSString *plistPath = [documentsPath stringByAppendingPathComponent:@"Data.plist"];
NSMutableDictionary *dictionary = [NSMutableDictionary dictionaryWithContentsOfFile:(NSString *)plistPath];
NSString *key = [viewerKeys objectAtIndex:indexPath.row];
[dictionary removeObjectForKey:[NSString stringWithFormat:@"%@", key]];
[self.tableView reloadData];
NSArray *indexPaths = [NSArray arrayWithObject:indexPath];
[tableView deleteRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationAutomatic];
}
答案 0 :(得分:1)
永远不要从表格单元格中获取数据。您已经拥有了用于填充表格单元格的数据结构,从这些相同的数据结构中获取数据。
您必须拥有某种类型的数组,以便为每个单元格获取正确的数据。使用相同的数组来获取要删除的行的数据。
如果您为cellForRowAtIndexPath:
方法显示一些代码,则可以给出更具体的答案。但基于indexPath
获取数据的代码基本相同。
您目前发布的代码仅显示字典。字典不是基于行的结构(如表格)的良好基础。
更新:根据您cellForRowAtIndexPath:
的代码,您只需要:
NSString *key = [viewerKeys objectAtIndex:indexPath.row];
更新2 :为什么要在commitEditingStyle
方法中再次加载文件?您需要修改已为表加载的现有数据结构。就目前而言,您拥有表格使用的数据结构。然后在commitEditingStyle
中,再次加载数据,从此临时数据中删除一个条目,然后告诉表重新加载。重新加载将使用原始数据结构,而不是此临时数据。
此外,请勿同时拨打reloadData
和deleteRowsAtIndexPaths:
。只需打电话给其中一个。
这一行:
[dictionary removeObjectForKey:[NSString stringWithFormat:@"%@", key]];
应该是:
[dictionary removeObjectForKey:key];
除非您实际上有一个要格式化的字符串,否则不要使用stringWithFormat
。