我正在创建一个应用程序,它从解析中检索图像并将其显示到集合视图中。当用户点击图像时,图像会详细显示。我有一个用户可以更改的文本字段。当用户更改某些内容时,他们会点击“保存”按钮并返回到集合视图。返回到集合视图控制器的代码不起作用。
@IBAction func saveButton(sender: AnyObject) {
// Use the sent country object or create a new country PFObject
if let saveInBackWithBlock = currentObject as PFObject? {
updateObject = currentObject! as PFObject
} else {
updateObject = PFObject(className:"Tops")
}
// Update the object
if let updateObject = updateObject {
updateObject["imageText"] = topsLabel.text
// Create a string of text that is used by search capabilites
var searchText = (topsLabel.text)
updateObject["searchText"] = searchText
// Update the record ACL such that the new record is only visible to the current user
updateObject.ACL = PFACL(user: PFUser.currentUser()!)
// Save the data back to the server in a background task
updateObject.saveInBackgroundWithBlock{
(success: Bool, error: NSError?) -> Void in
if (success) {
// The object has been saved.
} else {
// There was a problem, check error.description
}
}
print("saved")
}
self.navigationController?.popViewControllerAnimated(true)
}
我不知道为什么它不会回到之前的视图控制器。谢谢你
答案 0 :(得分:2)
您的父视图是否嵌入在导航控制器中?还 - 这个观点是如何呈现的?
从你刚刚添加的帖子中 - 你不能弹出模态VC - 试着解雇视图控制器。
答案 1 :(得分:0)
检查它是否嵌入导航控制器,尝试:
希望它有所帮助。