i want to create functionality like interface in swift, my goal is when i call another class suppose i\'m calling API and the response of that class i want to reflect in to my c
What are you finding is `Protocol'. Interfaces are same as protocol in Swift.
protocol Shape {
func shapeName() -> String
}
class Circle: Shape {
func shapeName() -> String {
return "circle"
}
}
class Triangle: Shape {
func shapeName() -> String {
return "triangle"
}
}
class
and struct
both can implements the protocol
.