NavigationController returning error message

Code Block
[UILog] Called -[UIContextMenuInteraction updateVisibleMenuWithBlock:] while no context menu is visible. This won't do anything


Is it a bug or am I doing something wrong; please help. I have just converted from Rad Studio to xcode

Is it a bug or am I doing something wrong

Could you show the code ? How do you want anyone to tell without ?
Unfortunately, there is no code. It is just the Back Button that is part of Nav Controller however the ViewController in question
called by the following codes:

Code Block
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
       if let vc = segue.destination as? CommentsViewController {
        vc.idTaskAction = cellTaskId
        vc.requestType = segm
        vc.taskText = taskTxt
        vc.t_status = curStatus 
        vc.userName = currentUser?.email ?? ""
       }
    }

CommentsViewController is wrapped into navigation controller and its Back Button is issuing the above error message randomly
Appears to be an Apple bug. I got this to happen in all my apps that have a navigation stack with two or more view controllers on it. Long press the back button and you'll get that UILog message. Doesn't matter if the menu has a single item, or multiple items.

Also duplicated this in a sample master detail iOS project and attached that to feedback: FB9033847
NavigationController returning error message
 
 
Q