Congratulations!
I'll try to remember to check it out. I'm on the road for a few days and starting a new job, so I'll be pretty busy for the next week or three.![]()
I had to reject the binary, I found a nasty bug I can't figure out, it's so nasty that you have to delete the app on the device/simulator to get it to work again.
I setup a url shortener on my server, that way the links in the app's plist aren't hard coded, and this will allow me to change redirects to a different server without submitting an app update.
The url shortener just redirects traffic. It works perfectly on all urls, except my pdf file's url, and when I change the redirect url on my server, the changes won't take effect until you delete the app and reinstall. Example: shorturl.com/pdf redirects to url.com/file.pdf and that works fine, but if I change it to redirect to url.com/filetwo.pdf it still loads the url.com/file.pdf This is not good! It sounds as if something is being retained through the app's lifecycle, but I don't see how.
What I don't understand is my other dynamic (redirect urls) work fine, and the changes on the server are reflected immediatelyin the app. (I use one of these urls to check to see if a server is online.)
Do you think you could help me fix this bug?