This is the approach I use for iOS 4 and 5 compatibility:
if ([toolbar respondsToSelector:@selector(setBackgroundImage:forToolbarPosition:barMetrics:)]) {
[toolbar setBackgroundImage:[UIImage imageNamed:@"toolbar-background"] forToolbarPosition:UIToolbarPositionAny barMetrics:UIBarMetricsDefault];
} else {
[toolbar insertSubview:[[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"toolbar-background"]] autorelease] atIndex:0];
}
'iOS' 카테고리의 다른 글
addSubView 된 객체에 대한 접근 방법 (0) | 2012.09.17 |
---|---|
테더링 바 제거 방법 일단 임시 (0) | 2012.09.17 |
상태바 statusbar 20px 공백 제거 (0) | 2012.09.13 |
iOS 프로그래밍 팁 - 3 StatusBar 감추기 (0) | 2012.09.13 |
UIImageView 터치 이벤트 (0) | 2012.09.13 |