What is the syntax for method hiding in swift? I've tried a bunch of options in the playground, but keep getting errors. Haven't been able to find any documentation on it either.
In superclass:
func performFunction() {
print("performing function...")
}
In subclass, tried a couple different options that do not seem to work
new func performFunction() {
print("function...")
}
and
func new performFunction() {
print("function...")
}