-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set CenterWindow as firstResponder of application #5
Comments
I just checked with my app and my center view table scrolls fine to the very top. At least for the first controller. I haven't tried other center views yet since they don't contain any tables (yet) |
Please look at setPanningMode |
It happens only when you have a UITableView in left ViewController and a UITableView in center ViewController. Anyone knows how to fix it? :-( |
I have tableviews in both left and center controllers and it scrolls fine. I removed right view altogether. |
It scrolls fine. But when I touch in iOS status, the UITableView of center ViewController does not go to the top. |
Look, this is a small video I posted just now. |
That is exactly my problem. You left ViewController is a TableView too? |
Yes, but on my left table I used:
if that makes any difference. It isn't too long and I didn't want it to rubber-scroll in the middle. Maybe that fixes it. |
Yes. It changes everything. ;-) I have fixed it right now, disabling left UITableView when it isn't visible.
Thanks! |
good you guys figured it out :) |
This probably should be documented somewhere :) |
true. im trying to figure out why this happens.. |
It happens because the firstResponder is the first ViewController (leftWindow). The status bar touch responds to the firstResponder ViewController with UITableView AFAIK. |
yes.. I understood that from your dialog. |
If you have a TableView inside CenterWindow and you try go to top touching in iOS status bar, the TableView will no scroll to the top.
It is happening with me. Is it happening with you too?
I think we should set the center ViewController as the firstResponder of application.
The text was updated successfully, but these errors were encountered: