iswiftapp / iswift

Objective-C to Swift Converter
30 stars 3 forks source link

Issues converting code that contains framework enums #204

Open skela opened 6 years ago

skela commented 6 years ago

Things like NSTextAlignment, UIControlEvents, is there a workaround?

I get errors like : Unexpected #identifier ("UIControlEvents").

drkameleon commented 6 years ago

Can you try putting @class UIControlEvents; at the top of your code?

skela commented 6 years ago

Thanks, that's a useful workaround. :D