I read, that it's always best practice to call super.method()
, if you override a method.
However, overriding the perform()
method of an UIStoryboardSegue
and calling super.perform()
throws an exception. If i'm not calling super.perform()
, it's working fine.
Why?