Swift equivalent of [NSBundle bundleForClass:[self class]]
Never used, but I think it should be this:
Swift <= 2.x
NSBundle(forClass: self.dynamicType)
Swift 3.x
Bundle(for: type(of: self))
Swift 3:
Bundle(for: type(of: self))
Swift 5
Bundle(for: Self.self)