I need make demi-transparent border and rect ( where WHITE wrote ) with similar corners
like on MacOS X if you select file ( in Icon view in Finder ) with name in 2 or more rows.
How i need to do ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the
CALayerof aUIView. ThecornerRadius,borderColor, andborderWidthproperties of thelayerof aviewshould do it for you. Something like this:Dont forget to
#import <QuartzCore/QuartzCore.h>at the top of the.mfile, or you can put it in your-Prefix.pchfile if you use layers often.