Search code examples
iphoneobjective-ccocoa-touchipadios4

Error while converting an iPhone app into one universal app (iPhone and iPad)


I have an iPhone app which requires to be a universal app. Common between iPhone and iPad.

I tried running the same app on iPad. It shows error in console saying:

dyld: Symbol not found: _UIApplicationLaunchOptionsLocalNotificationKey

What should be done? What can be wrong?


Solution

  • UILocalNotification is a special feature introduced in version 4.0 and later.If you want to use for Ipad update your version to 4.2 which supports UILocalNotification.For Ipad 3.2 only Push-notification is available.

    All the best.