EventKit in Universal app (OS3.2)

淺唱寂寞╮ 提交于 2019-12-21 20:59:08

问题


I made iPhone app with eventkit framework. However, i upgrade to universal app, app can't run in ipad. I got error message

dyld: Library not loaded: /System/Library/Frameworks/EventKit.framework/EventKit

Yes, event kit only work for iOS 4.0 or later. So, how to make it for universal.

I want to make , if iPad app, don't use event kit framework.

However, I can't add

#import <EventKit/EventKit.h>
#import <EventKitUI/EventKitUI.h>

in run time


回答1:


You need to do two things:

  1. First, weak link against the EventKit framework. You do this in Target->Get Info->General.

  2. Secondly, you need to decide at run time whether or not certain functionality is available:

    Class someClass = NSClassFromString(@"SomeClass");
    if(someClass) {
      // iOS4 code
    }
    else {
      // iOS3.2 code
    }
    



回答2:


Need to make weak linking.

Right Click on Target -> Get Info -> General Tab

change Eventkit Framework required to weak.




回答3:


I know this is a really weak answer, but the only answer if you need EventKit on the iPad: Wait until next month when iOS 4.2 ships for the iPad. At this time use the 4.2 beta to develop your universal app. Maybe your app can be ready when the App Store starts accepting apps requiring iOS 4.2.



来源:https://stackoverflow.com/questions/3984510/eventkit-in-universal-app-os3-2

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!