Semyon Tikhonenko
Semyon Tikhonenko

Reputation: 4262

Call Swift overloaded operator from Objective-C

Is it possible to call a custom operator, overloaded in Swift, from Objective-C?

Upvotes: 1

Views: 94

Answers (1)

Lou Franco
Lou Franco

Reputation: 89242

No, not as an operator. You would have to wrap in a more normal function inside of a class.

Upvotes: 1

Related Questions