EurekaCommunity / ViewRow

ViewRow is a Eureka row that allows you to display any UIView (or UIView sunclass) within a Eureka row. Views can be created in code or loaded from nib files.
MIT License
77 stars 16 forks source link

Fix layout bug (wrong operator precedence) #15

Closed timoinutilis closed 6 years ago

timoinutilis commented 6 years ago

Added parenthesis to fix calculation. ?? operator has a lower precedence than +, so margins were ignored.

alldritt commented 6 years ago

Thank you!