본문 바로가기
Developer/IOS

View Shadow

by MindOpener 2013. 4. 9.
반응형


UIView *testView = [[UIView alloc] initWithFrame:CGRectMake(20.0f, 50.0f, 280.0f, 100.0f)];
UIBezierPath *shadowPath = [UIBezierPath bezierPathWithRect:testView.bounds];

testView.backgroundColor = [UIColor yellowColor];
[testView.layer setMasksToBounds:NO];
[testView.layer setShadowColor:[[UIColor blackColor] CGColor]];
[testView.layer setShadowOffset:CGSizeMake(0.0f, 0.0f)];
[testView.layer setShadowOpacity:1.0f];
[testView.layer setShadowRadius:3.5f];
[testView.layer setShadowPath:shadowPath.CGPath];

반응형

'Developer > IOS' 카테고리의 다른 글

숨겨진 라이브러리 폴더로 가기 / library  (0) 2013.04.18
해당 개발자 관련 app정보 링크  (0) 2013.04.16
동적 버튼 생성및 핸들링  (0) 2013.04.03
반올림  (0) 2013.04.02
랜덤하게 숫자 뽑기기  (0) 2013.04.01