UIImageView를 둥글게 제가 사용한 방법 입니다.
#import <QuartzCore/QuartzCore.h> 이렇게 한 후
imageView.layer.masksToBounds = YES;
imageView.layer.cornerRadius = 5;
이걸 쓰면 둥글게 되더군요.
cornerRadius 의 수치가 둥글게 정도의 수치구요.
'iOS' 카테고리의 다른 글
아이폰 서클(circle 또는 wheel) 메뉴 (0) | 2012.09.13 |
---|---|
[iOS]Category 를 이용한 UIViewController 에 오버레이되는 View 만들기 (0) | 2012.09.13 |
#iOS RoundRectedImageView 만들기. (0) | 2012.09.13 |
[IPhone] UITextView를 UITextField의 placeholder 처럼 사용하기 (0) | 2012.09.12 |
UIImage crop 및 resize category 추가 (0) | 2012.09.10 |