0

I am struck with this thing.. Dont know how to implement this one... My requirement is When..user clicks on the second half of the screen.., Only the second half of the screen should change, So.., modalViewController and pushViewController wont help I guess.., The first half of the screens remains fixed. Depending on the control logic, I can then navigate to the next respective second half screen and the first part of the screen remains fixed

Cœur
  • 37,241
  • 25
  • 195
  • 267
Kiran Kulkarni
  • 1,434
  • 2
  • 18
  • 40

2 Answers2

1

Add two subview to your view and listen for touches (touchesBegan:withEvent:) on them in your view controller.

dasdom
  • 13,975
  • 2
  • 47
  • 58
0

Create your own split view controller which mimics a navigation controller but manages its own views. Have a sub view for the bottom part and animate changes / navigation from this controller.

Simon Lee
  • 22,304
  • 4
  • 41
  • 45