나름 프로그래밍?/ Objective-C
뷰전환시 탭바 감추기
-Dong-
2010. 5. 14. 02:54
해당 뷰컨트롤러의 할당시 hidesBottomBarWhenPushed 속성 수정
-(id)init
{
if(self = [super init])
{
self.hidesBottomBarWhenPushed = YES;
}
return self;
}
-(id)init
{
if(self = [super init])
{
self.hidesBottomBarWhenPushed = YES;
}
return self;
}