Remove prefixes from classes etc.
SebastianBoldt opened this issue · 2 comments
SebastianBoldt commented
Prefixes are bad in Swift because there is no need for them. Please remove.
ChristianKienle commented
You can simply annotate like this:
NS_SWIFT_NAME(Class)
@interface XXXClass: NSObject
This retains the prefixes under Objective-C but gets rid of them for Swift-users.
SebastianBoldt commented
Done in 2.0.0 ✅