Skyscanner / SkyFloatingLabelTextField

A beautiful and flexible text field control implementation of "Float Label Pattern". Written in Swift.
Apache License 2.0
4.09k stars 540 forks source link

Fix README.md 'CGRectMake' is unavailable in Swift #240

Closed cruisediary closed 5 years ago

cruisediary commented 5 years ago

Fix README.md 'CGRectMake' is unavailable in Swift

// as is
CGRectMake(10, 10, 200, 45)

// to be
CGRect(x: 10, y: 10, width: 200, height: 45)
k0nserv commented 5 years ago

Thanks :)