Reputation: 645
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.
Under the xcode project
Upvotes: 0
Views: 53
Reputation: 122391
I would say your error is that AppMainController
doesn't conform to the NSPortDelegate
protocol.
Upvotes: 0