Saravana
Saravana

Reputation: 645

migrating from mac sdk 10.4u to sdk9

I have upgraded my os from mac 10.7 to mac 10.9 and installed a new xcode 6.0.1 in the new os. I have a code which is running in xcode 3.2.5 along with 10.4usdk.

do we have any procedure to upgrade from 10.4u sdk to 10.9 sdk?

[m_SDMPort setDelegate:self] ==> throws error 

// throws error "cannot initialize a parameter of type 'id<NSPortDelegate>' with an lvalue of type 'AppMainController *'

how to avoid this error and these kind of errors while porting from 10.4u sdk to 10.9?

changed the following things.

  1. copied the SDK from xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer to /Developer/SDKs/MacOSX10.9.sdk

Under the xcode project

  1. changed the OS X Deployment Target as 10.9
  2. changed the base SDK as OS x 10.9
  3. changed the user defined SDK as /Developer/SDKs/MacOSX10.9.sdk
  4. changed the project settings, project save format

Upvotes: 0

Views: 53

Answers (1)

trojanfoe
trojanfoe

Reputation: 122391

I would say your error is that AppMainController doesn't conform to the NSPortDelegate protocol.

Upvotes: 0

Related Questions