I have been looking for an answer for this for a while now, but have not yet found any. I have a method that looks like this
dispatch_async(dispatch_get_main_queue()) {
self.performSegueWithIdentifier("ShowNextView", sender: nil)
}
Is it possible in some way to use the performSelectorOnMainThread
for this purpose? As I can see performSelectorOnMainThread
on accepts one parameter.