Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

Bottom 20 pixels wont detect touch events.

gerakisgerakis Posts: 12Registered Users
I dont know why, but the very bottom edge of my touch screen refuses to respond to any touch events. Its only about 20 pixels worth. I cant push buttons, scroll a scrollview, or anything. This happens in both the actual device and the simulator. Everything in that area seems to display normally, and I can see it just fine. Every other part of my screen works correctly.

I suspect this has something to do with the status bar at the top. I left it in on purpose, and all of the uiviews that I am using are 460 pixels in length. I have looked around the net a while and cant find any help for this problem.

What would cause this sort of problem? Any tips on how to fix it?
Post edited by gerakis on

Replies

  • Bertrand21Bertrand21 Posts: 2,009Registered Users
    gerakis;232364 said:
    I dont know why, but the very bottom edge of my touch screen refuses to respond to any touch events. Its only about 20 pixels worth. I cant push buttons, scroll a scrollview, or anything. This happens in both the actual device and the simulator. Everything in that area seems to display normally, and I can see it just fine. Every other part of my screen works correctly.

    I suspect this has something to do with the status bar at the top. I left it in on purpose, and all of the uiviews that I am using are 460 pixels in length. I have looked around the net a while and cant find any help for this problem.

    What would cause this sort of problem? Any tips on how to fix it?
    Are you hiding the status bar?
    Acquired.
  • gerakisgerakis Posts: 12Registered Users
    No, I am not hiding the status bar. I purposely left it in the app, as being able to check the time, battery, ect seems useful.

    I hid it in interface builder, but I just now tried unhiding it and it didn't make a difference anyway.
  • gerakisgerakis Posts: 12Registered Users
    Ok, I figured it out. I was using multiple subviews inside a parent view. One of my subviews toolbars was too close to the bottom of the visible screen area. For some reason the touches were being intercepted by the toolbar, but then they didnt work because it was out of bounds.

    I just moved the closest subviews further away and now it works great.
Sign In or Register to comment.