0

사이드 바 메뉴를 생성하려면 아래의 이미지와 같이 UINavigationBar을 지정하십시오. 난 사이드 메뉴했을 ECSlidingviewController 라이브러리를 사용하여사이드 바 메뉴와 iOS의 내비게이션 바 표시

enter image description here

. 하지만, 메뉴에서 슬라이드 할 때 NavigationIndicator을 표시해야합니다.

어떻게 만들 수 있습니까? 어떤 아이디어가 있습니까?

답변

2

여기서는 특별한 것이 없습니다. 보기를 만들고 컨트롤러 (메뉴 컨트롤러 아님)의 탐색 모음의 하위보기로 추가하기 만하면됩니다. 그것은 작동하고 ....

CGFloat desiredWidth = x;<----replace x. 
UIView *testView = [[UIView alloc]initWithFrame:CGRectMake(-desiredWidth,0,desiredWidth,44)]; 
[testView setBackgroundColor:[UIColor blackColor]]; 

[self.navigationController.navigationBar addSubview:testView]; 
+0

감사 : 여기

간단한 데모입니다 – Singapore