App crashes in iOS 8
Posted: Fri Sep 19, 2014 9:36 pm
My app, Number Wizard, has been in the App Store for over two years. For each new version of iOS, I've never had any issues. Now, with iOS 8, my app crashes. The 'welcome screen' appears and then it crashes. Any help is greatly appreciated. I haven't had to touch my code since I initially put it in the App Store. I am using an iPad mini.
on openStack
set the defaultFolder to specialFolderPath("Documents")
locatePlayButtons
code for hiding various fields and buttons
put the Machine into whatDevice
code for initializing variables
put 1 into gWidthRatio
put 1 into gHeightRatio
if whatDevice <> "unknown" then
iphoneUseDeviceResolution true, true
end if
put readFromFile ("Prefs") into thePrefs
code to move items into fields
put readFromFile ("Scores") into theScores
code to move items into fields
if item 1 of thePrefs = "0" then (this shouldn't be in my case)
show button "welcome"
else
hide button "welcome"
setPreferences
createProblem
end if
end openStack
on openStack
set the defaultFolder to specialFolderPath("Documents")
locatePlayButtons
code for hiding various fields and buttons
put the Machine into whatDevice
code for initializing variables
put 1 into gWidthRatio
put 1 into gHeightRatio
if whatDevice <> "unknown" then
iphoneUseDeviceResolution true, true
end if
put readFromFile ("Prefs") into thePrefs
code to move items into fields
put readFromFile ("Scores") into theScores
code to move items into fields
if item 1 of thePrefs = "0" then (this shouldn't be in my case)
show button "welcome"
else
hide button "welcome"
setPreferences
createProblem
end if
end openStack