oleksii-demedetskyi / Parus

Parus is simple chain style auto-layout helper for objective-c.
MIT License
106 stars 4 forks source link

Use NS_ENUM macro to create enumerators #48

Closed xNekOIx closed 9 years ago

dodikk commented 10 years ago

@dodikk regarding NS_ENUM, you can't use it with float or double types, you will get an error: non-integral type 'float' is an invalid underlying type see original typedef for layout priorities.

Please use OBJC_EXTERN const float to declare public constants. The enum keyword has not been designed for such use case.