본문 바로가기
프로그래밍/iOS

UIImageView에 라운딩 처리

by 백룡화검 2012. 1. 11.
UIImageView *image = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"item.png"]];

//라운딩처리
image.layer.cornerRadius = 5.0;
image.layer.masksToBounds = YES;

//라운드 테두리
image.layer.borderColor = [UIColor lightGrayColor].CGColor;
image.layer.borderWidth = 1.0;

QuartzCore Framework를 포함해야함.

이렇게 좋은 방법이 있는줄도 모르고 그냥 이미지 자체에 뽀샵으로 라운딩 처리할라고 했네.ㅋㅋ
무식하면 몸이 고생이라지.
ㄷㄷㄷㄷㄷㄷ