1

I am developing iPhone app for iOS 5 or above version, and making use of storyboard for UI design. My problem is when i am on phone call my UI gets misaligned because my upper status bar is taking 20 to 30 pixel of screen space.

enter image description here

How to handle my UI when i am on phone call?

Enamul Hassan
  • 5,266
  • 23
  • 39
  • 56
Ankit Jain
  • 1,858
  • 22
  • 35

1 Answers1

2

I finally got answer for my question. Following are the things i made changes in my project and everything started working fine.

  1. Took sliced images of all the things needed in my UI. (Initially i was taking common image to save slicing time)
  2. Made you of autoResizingMask property. It help me save my lots of time. Just make sure only 3 arrows top, left and right one is in ON state and your work is over.

For making everyones search easy i will add following Stackoverflow links to save your time

  1. How to position view below green bar during phone call?

  2. Resize for in-call status bar?

  3. How do I detect a double-height status bar?

  4. How to Remove Status Bar in "View Based Application" - iOS

  5. how to hide status bar in Iphone application

  6. How In-Call status bar impacts UIViewController's view size ? (and how to handle it properly)

  7. iPhone Programming In Call Status Bar

  8. resize content after iPhone status bar is shown/hidden

  9. How to programmatically get iOS status bar height

  10. How is the in-call status bar impacting my CGAffineTransform'd view?

  11. View resize when In-Call Status Bar changes

Thanks to all the people who have replied to all the questions above. It made my big problem resolved.

Community
  • 1
  • 1
Ankit Jain
  • 1,858
  • 22
  • 35