if(node2->key > node2->right->key)
{
nextnode = node2->right;
tmp = node2->left;
if (tmp)
tmp->right = nextnode;
if (nextnode->right)
nextnode->right->left = node2;
node2->right = nextnode->right;
node2->left = nextnode->left;
nextnode->right = node2;
nextnode->left = tmp;
}
答案 0 :(得分:0)
您的错误是Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key docPassword
。
通常这意味着viewController的.xib文件(或故事板)包含一个不在您的代码中的插座(docPassword
)。您应该在代码中添加属性,或者在界面构建器中完全删除插座。
答案 1 :(得分:0)
你有一个不再存在的插座。检查连接检查器是否有丢失的连接。