Problem with scrollToY after daily build 2689

Has anyone noticed the scrollToY not working with the latest daily builds?

I was using build 2646 and the scrollToY was working just fine. I updated xCode to 7.0 which meant I had to go to the latest daily build to be able to install the app on my devices. When I built using 2722 the scrollToY function no longer worked. If I went back to build 2646 it worked just fine. So, I started testing the different daily builds to see where the problem started. The scrollToY worked up to build 2689. After build 2689 it no longer works.

My implementation of it is thus:

tableView:scrollToY( { y=startScroll, time=0 } ) 

I was going to write up a bug report, but everytime I created some quick code to demonstrate the problem it worked in the test code, but not in my actual code. Go figure??? The actual code is too dependent on several modules and a database to submit for a bug report. I would basically have to submit almost the entire app.

Has something happened starting with build 2690 to affect the way scrollToY is behaving??

Thanks for any help,

Guy

Hi @guybryant,

I just tested it in build #2716 and it works fine. I don’t know why your code would be failing, unless somehow the “startScroll” variable is not correct. Confirm that first, because I see no issues with the API or TableView functionality.

Take care,

Brent

Brent,

Thanks for taking a look at this. I’m totally confused as to why it doesn’t work on any build after 2689. I tested it on 2716 too and the scrollToY is not accepting the value being passed to it. I put in print statements to make sure the y value is being passed to scrollToY and it is. If I take the very same code and build with any version from 2689 or earlier it works just fine. 

When I try to make an example to submit as a bug report it works fine. The only thing I know to try now is to completely redo my module to just the basics and see if it works. If so, then I’ll start adding in the other features within my module to see where it breaks. I’ll report back what I discover.

Hi @guybryant,

I just tested it in build #2716 and it works fine. I don’t know why your code would be failing, unless somehow the “startScroll” variable is not correct. Confirm that first, because I see no issues with the API or TableView functionality.

Take care,

Brent

Brent,

Thanks for taking a look at this. I’m totally confused as to why it doesn’t work on any build after 2689. I tested it on 2716 too and the scrollToY is not accepting the value being passed to it. I put in print statements to make sure the y value is being passed to scrollToY and it is. If I take the very same code and build with any version from 2689 or earlier it works just fine. 

When I try to make an example to submit as a bug report it works fine. The only thing I know to try now is to completely redo my module to just the basics and see if it works. If so, then I’ll start adding in the other features within my module to see where it breaks. I’ll report back what I discover.