4

The app I'm currently developing works perfectly on the simulator.

However, plugging in an ipod touch and clicking "run" won't run it on device.

There are no error messages or anything - it builds the project, and then says "finished running ...". Nothing comes up on the device.

If it helps, I'm using the Core Plot charting library, other projects seem to build and run on device properly. Its just odd there are no errors.

Any ideas?

Thank you.

Thomas Clayson
  • 29,657
  • 26
  • 147
  • 224

4 Answers4

4

Did you try performing clean and build ? if it's not working add core plot references again and see.

Rahul Vyas
  • 28,260
  • 49
  • 182
  • 256
1

Sometimes you get this error if the provisional profile is expired. Please verify the provisional profile in the device and in the xcode organizer.

Subhash
  • 544
  • 1
  • 5
  • 13
1

It's telling you something on the console. Look at the console.

Dan Ray
  • 21,623
  • 6
  • 63
  • 87
1

Add NSLog(@"001"); and NSLog(002); ... calls to your code to check where the app stops.

dasdom
  • 13,975
  • 2
  • 47
  • 58