0

Here is what I have in my Objects menu in the interface builder

enter image description here

Im curious if the order of ImageView , PaintView and PlayerView matters? In my case I want to stack them in the following order: PlayerView / ImageView / PaintView where paint view is on the very top (closest to the "user").

Does anyone know how I can do it here?!

Eugene Gordin
  • 4,047
  • 3
  • 47
  • 80

1 Answers1

1

This is correct. The hierarchy there will correspond to the drawing order of the views. In your image, Paint View will be on top of Player View, etc.

Derek
  • 1,170
  • 12
  • 16