0

I have an iPad app (XCode 5, ARC, iOS 7 and Storyboards). I have a UIView that conceptually looks like this:

enter image description here

Initially, the display looks like this (notice the time on the left hand grid):

enter image description here

When I switch to another view and return to this view, notice the time now: enter image description here

Apparently it's been like this since day one, and I just found it.

If I "nudge" the UIScrollView (move it ever so slightly), the left hand grid then shows the correct time.

Anybody have suggestions of where to look to fix this?

SpokaneDude
  • 4,856
  • 13
  • 64
  • 120
  • Looks like it could be this problem: http://stackoverflow.com/a/18730399/1367622 – Steph Sharp Oct 30 '13 at 05:27
  • Steph Sharp: works like a champ! and to think it's not fixed in iOS 7... what a mess! Please re-write your comment as an answer so I can close this... and tell me where to send the pizza! lol Thank you so much... SD – SpokaneDude Oct 30 '13 at 18:45
  • Glad it worked! I'll write it as an answer now... – Steph Sharp Oct 31 '13 at 01:24

1 Answers1

1

See my answer to a similar question here.

You need to set the scrollview's contentOffset appropriately in viewWillAppear: and viewDidDisappear:.

Community
  • 1
  • 1
Steph Sharp
  • 11,462
  • 5
  • 44
  • 81