0

I am trying to test an app from that I created by following an tutorial of Paul Hegarty from stanford university.

You can find a download link over here.

When I test it on the IOS5.0 simulator, it works fine. But when I test it on the IOS 5.1 simulator. It doesn't do anything. Can anybody test it in their simulators and tell me if it's working?

You only need to download it, and fill this API-key. In FlickrAPI-key.h

95f1f522e7332485662d0b1dfbba6544

Kind regards.

Frakcool
  • 10,915
  • 9
  • 50
  • 89
Sarah Geebelen
  • 173
  • 1
  • 9
  • 1
    I am not sure if you'll get many responses telling you if the app worked on a simulator or not. You could probably add more detail - what happens? Where does the program stall off? Are there any error logs etc. Or you could try and debug the app. See where it stops – lostInTransit Oct 30 '12 at 10:16

1 Answers1

2

This indeed doesn't work in the iOS 5.1 Simulator.

The (first) problem seems to be in PhotographersTableViewController.m on line 76, where openWithCompletionHandler: is being called on a UIManagedDocument, but for some reason, the completion handler is never called, even though it should be, according to the documentation.

Others have had this problem, too:

Looks like a bug in iOS 5.1 to me - but probably just in the Simulator, and maybe only when using the iOS 6.0 SDK. I don't have a device with iOS 5.1 with me, so I can't test that, but it seems to work fine on the iOS 6.0 Simulator.

Community
  • 1
  • 1
Andreas Ley
  • 9,109
  • 1
  • 47
  • 57
  • Thank you for your response. What do you suggest for solve this problem? – Sarah Geebelen Oct 30 '12 at 10:28
  • @SarahGeebelen Get a device and test it there. The simulator is just a simulator and not an emulator after all. – JustSid Oct 30 '12 at 10:31
  • @SarahGeebelen Don't use the iOS 5.1 Simulator. :) You most likely won't be able to fix this easily, as it looks to be a problem in Apple's code. Use the iOS 6.0 Simulator or a real device. – Andreas Ley Oct 30 '12 at 10:32
  • Okay tomorrow I have a device with IOS 5.1 and then I will test it. Thanks in advance. – Sarah Geebelen Oct 30 '12 at 10:34