iOS - 如何从 commitEditingStyle 获取表格行的标签
Posted
技术标签:
【中文标题】iOS - 如何从 commitEditingStyle 获取表格行的标签【英文标题】:iOS - How can I get the label of a table row from commitEditingStyle 【发布时间】:2013-02-14 16:50:34 【问题描述】:我有一个 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];
【问题讨论】:
[[dictionary allKeys] objectAtIndex:indexPath.row]
显示你的 plist 的几行。 (在 Xcode 中,右键单击并“打开为”->“源代码”)。请将此放入您的问题中,而不是作为评论。
@H2CO3 我认为这并不能保证正确的顺序....
【参考方案1】:
永远不要从表格单元格中获取数据。您已经拥有用于填充表格单元格的数据结构,从这些相同的数据结构中获取数据。
您必须有某种数组,这样您才能为每个单元格获取正确的数据。使用相同的数组来获取被删除行的数据。
如果您为cellForRowAtIndexPath:
方法显示一些代码,则可以给出更具体的答案。但是根据indexPath
获取数据的代码基本相同。
到目前为止,您发布的代码仅显示字典。字典不是表格等基于行的结构的良好基础。
更新:根据您的cellForRowAtIndexPath:
中的代码,您只需要:
NSString *key = [viewerKeys objectAtIndex:indexPath.row];
更新 2:为什么要在 commitEditingStyle
方法中再次加载文件?您需要修改已为表加载的现有数据结构。就目前而言,您拥有表使用的数据结构。然后在commitEditingStyle
中,再次加载数据,从临时数据中删除一个条目,然后告诉表重新加载。重新加载将使用原始数据结构,而不是这些临时数据。
另外,不要同时调用reloadData
和deleteRowsAtIndexPaths:
。只需调用其中一个即可。
还有这一行:
[dictionary removeObjectForKey:[NSString stringWithFormat:@"%@", key]];
应该是:
[dictionary removeObjectForKey:key];
不要使用stringWithFormat
,除非您确实有一个正在格式化的字符串。
【讨论】:
- (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;
好的,我的 viewerKeys
是一个 ivar NSArray
,它包含 plist 中的所有键。当我在viewerKeys = [dictionary allKeys]
将其更改为NSMutableArray
时,我收到错误incompatible pointer types assigning to 'NSMutableArray *___strong' from 'NSArray *
...我确定我在这里做的明显错误...
好的,我已经通过将 viewerKeys 更改为 [viewerKeys addObjectsFromArray:[dictionary allKeys]];
成功更改了它,但现在我的表格没有被填充...以上是关于iOS - 如何从 commitEditingStyle 获取表格行的标签的主要内容,如果未能解决你的问题,请参考以下文章