Unfortunately, I have a class defined in Objective C (Class.h, Class.m) and another class, with the same name in Swift(Class.swift).
I have a bridging header, where I import the class
#import "Class.h"
Now, I want to create a method that returns the class from Objective C. Is there a way to specify that I want to use the Objective C class instead of the swift one, or should I start renaming my classes?