如何将indexPath.row绑定到iphone sqlite中的主键
我可以成功更新我的 sqlite 数据库,但是我希望主键与表视图中选择的行相对应。我苦苦挣扎的原因是因为我需要从表视图获取索引路径并将其传递给我更新数据库的 Todo 类。这是代码:
Tableview (RootViewController):
- (void)updateStatus:(id)sender { // called when a user presses the button to alter the status
NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)[sender superview]];
NSLog(@"The row id is %d", indexPath.row); // This works
todoAppDelegate *appDelegate = (todoAppDelegate *)[[UIApplication sharedApplication] delegate];
Todo *td = [appDelegate.todos objectAtIndex:indexPath.row];
self.selectedIndexPath = indexPath;
NSLog(@"Selected index path is %i", self.selectedIndexPath);
if (td.status == 0) {
[td updateStatus:1];
NSLog(@"Status is %i",td.status);
}
else {
[td updateStatus:0];
NSLog(@"Status is %i",td.status);
}
[appDelegate.todos makeObjectsPerformSelector:@selector(dehydrate)];
}
Todo 类:
- (void) dehydrate {
if (dirty) { // If the todo is “dirty” meaning the dirty property was set to YES, we will need to save the new data to the database.
if (dehydrate_statment == nil) {
const char *sql = "update todo set complete = ? where pk= ?"; // PK needs to correspond to indexpath in RootViewController
if (sqlite3_prepare_v2(database, sql, -1, &dehydrate_statment, NULL) != SQLITE_OK) {
NSAssert1(0, @"Error: failed to prepare statement with message '%s'.", sqlite3_errmsg(database));
}
}
sqlite3_bind_int(dehydrate_statment, 2, self.primaryKey);
sqlite3_bind_int(dehydrate_statment, 1, self.status);
int success = sqlite3_step(dehydrate_statment);
if (success != SQLITE_DONE) {
NSAssert1(0, @"Error: failed to save priority with message '%s'.", sqlite3_errmsg(database));
}
sqlite3_reset(dehydrate_statment);
dirty = NO;
NSLog(@"Dehydrate called");
}
}
非常感谢!
I can successfully update my sqlite database however I would like the primary key to correspond to the row selected in tableview. The reason I'm struggling is because I need to get the indexpath from the tableview and pass it to my Todo class where I update the database. Here's the code:
Tableview (RootViewController):
- (void)updateStatus:(id)sender { // called when a user presses the button to alter the status
NSIndexPath *indexPath = [self.tableView indexPathForCell:(UITableViewCell *)[sender superview]];
NSLog(@"The row id is %d", indexPath.row); // This works
todoAppDelegate *appDelegate = (todoAppDelegate *)[[UIApplication sharedApplication] delegate];
Todo *td = [appDelegate.todos objectAtIndex:indexPath.row];
self.selectedIndexPath = indexPath;
NSLog(@"Selected index path is %i", self.selectedIndexPath);
if (td.status == 0) {
[td updateStatus:1];
NSLog(@"Status is %i",td.status);
}
else {
[td updateStatus:0];
NSLog(@"Status is %i",td.status);
}
[appDelegate.todos makeObjectsPerformSelector:@selector(dehydrate)];
}
Todo class:
- (void) dehydrate {
if (dirty) { // If the todo is “dirty” meaning the dirty property was set to YES, we will need to save the new data to the database.
if (dehydrate_statment == nil) {
const char *sql = "update todo set complete = ? where pk= ?"; // PK needs to correspond to indexpath in RootViewController
if (sqlite3_prepare_v2(database, sql, -1, &dehydrate_statment, NULL) != SQLITE_OK) {
NSAssert1(0, @"Error: failed to prepare statement with message '%s'.", sqlite3_errmsg(database));
}
}
sqlite3_bind_int(dehydrate_statment, 2, self.primaryKey);
sqlite3_bind_int(dehydrate_statment, 1, self.status);
int success = sqlite3_step(dehydrate_statment);
if (success != SQLITE_DONE) {
NSAssert1(0, @"Error: failed to save priority with message '%s'.", sqlite3_errmsg(database));
}
sqlite3_reset(dehydrate_statment);
dirty = NO;
NSLog(@"Dehydrate called");
}
}
Many thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我必须从您的代码中假设每个待办事项都会获得相同的 PK(indexPath.row)。
将“performSelector”分开,并传递每个待办事项索引,如下所示:
并将脱水重新声明为:
I have to assume from your code that each of the todo's will get the same PK (the indexPath.row).
Break your 'performSelector' apart, and pass each todo the index, like this:
And re-declare dehydrate as:
关于代码的一些注释:
脱水
方法会更好。关于你的问题:
你的单元格应该托管主键/待办事项数据,以便在indexPath行和pk之间没有对应关系的情况下允许你“链接”它们。
如果您不想创建自己的单元子类,一个简单的技巧是使用 单元格
tag
属性Some remarks about your code :
dehydrate
method targeting a todo by pk would be better.About your question :
Your Cell should host primary key / todo data for allowing you to "link" them if there is no correspondance between indexPath row and pk.
One easy trick if you don't want make your own cell subclass, is to use cell
tag
property