2009-08-07 8 views

Répondre

0

Utilisez un fichier PNG avec un arrière-plan transparent. Puis simplement arrondir les coins de votre image avant de les ajouter à l'iPhone.

1

J'espère que cela peut aider:

Round the corners of an image

tout ce que vous avez à faire est de:

#import <QuartzCore/QuartzCore.h> 

//Then do this. Change "theImageView" with the name of your ImageView 

theImageView.layer.cornerRadius = 12; 

theImageView.layer.masksToBounds = YES; 
Questions connexes