SebastianBoldt/Jelly

Remove prefixes from classes etc.

SebastianBoldt opened this issue · 2 comments

Prefixes are bad in Swift because there is no need for them. Please remove.

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.

Done in 2.0.0 ✅