Hello I have been looking around for this answer and I've come across multiple articles but none of them have given me a straight answer. Lets say we have Object Date in objective C if I want to add methods to this object I would create a file similar to this:
obj c:
@interface Date (AdditionDate)
//methods
@end
in swift it seems to be a little different we do the following:
extension Date {
//methods
}
is this correct? Thank you for your help!!