开发者

How can I draw Rounded Rectangles around my textfields and buttons like Foursquare app

开发者 https://www.devze.com 2023-02-14 00:56 出处:网络
How can I draw a background behind all my buttons and textfields like on the 开发者_C百科Foursquare iPhone app?See where it says \"Share with...\"You can achieve rounded corners on any view by changin

How can I draw a background behind all my buttons and textfields like on the 开发者_C百科Foursquare iPhone app? See where it says "Share with..."


You can achieve rounded corners on any view by changing the cornerRadius property of the view's backing CALayer. To access these properties, you will have to link against the QuartzCore framework.

Then you can change the corner radius like this:

textFieldBackgroundView.layer.cornerRadius = 10;

Just make sure to add <QuartzCore/QuartzCore.h> to your project and #import it.

0

精彩评论

暂无评论...
验证码 换一张
取 消