iOS Simulator speed Question
Posted: Tue Jun 16, 2015 2:04 pm
I made an app and tested it on iOS Simulator. Everything works great except one thing.
I wrote something like this in the program:
I use the above code to bring page "k" out from the bottom of the screen. It works smoothly in Smart Basic on iOS devices. However, the same code works weird on iOS Simulator. The page "k" came out way too slow, so I am wondering maybe I should adjust the code to make it faster.
So, my question is which one is more close to "the real situation"? Because I am planing to put my app to App Store, I need to know which one should I trust, Smart Basic or iOS Simulator?
By the way, my computer is Mac Mini 2.6 GHz Intel Core i5, and system is OS 10.10.3, Xcode 6.3.2, iOS Simulator 8.3.
Thank you!
I wrote something like this in the program:
Code: Select all
x=screen_width()!y=screen_height()
for b=0 to 1000
page "k" at 0,y-y/1000*b
next b
So, my question is which one is more close to "the real situation"? Because I am planing to put my app to App Store, I need to know which one should I trust, Smart Basic or iOS Simulator?
By the way, my computer is Mac Mini 2.6 GHz Intel Core i5, and system is OS 10.10.3, Xcode 6.3.2, iOS Simulator 8.3.
Thank you!