I want to implement paypal in my application and it is purely objective C based.
How should I do that? I searched a lot but could not get any proper guidance?
I want to implement paypal in my application and it is purely objective C based.
How should I do that? I searched a lot but could not get any proper guidance?
I have done it by creating a button in Paypal. Once the button is created, Paypal gives a HTML link for that button for use in emails. Once that has been done, the link can be opened using a combination of NSURL and [[NSWorkspace sharedWorkspace] openURL: ].
Paypal has a pretty extensive SOAP API available for external use. Cocoa doesn't have the greatest support for SOAP, but you could probably get something to work via those APIs.