2010년 5월 25일 화요일

CustomNavigationController

0. 목적
title 영역에 background image 넣고싶다.

1. 구현


@interface CustomNavigationController : UINavigationController {

}

@end


#import "CustomNavigationController.h"


@implementation UINavigationBar(background)

- (void)drawRect:(CGRect)rect {

[super drawRect:rect];

UIImage* image = [UIImage imageNamed: @"title_bg.png"];

[image drawInRect:CGRectMake(0,0,self.frame.size.width,self.frame.size.height)];   

}

@end


@implementation CustomNavigationController

@end

댓글 없음:

댓글 쓰기