Reputation: 812
I would like to port a WP7 app I wrote to the iPhone. Is there some useful document for me to start? I have no knowledge in Objective-C yet.
Upvotes: 1
Views: 1123
Reputation: 1728
Also if you are familiar with html(5) and javascript you can think about using frameworks like Phonegap which supports up to 7 mobile plattforms using the same application code.
Upvotes: 0
Reputation: 236
MonoTouch is a development stack for using C# and .NET to develop iOS apps. This should make iOS app development easier for existing .NET developers.
Here're the good parts of MonoTouch:
There are a few gotchas:
Because of this setup, I would recommend separating your code into business and UI logic. The business logic can be reused in iOS and WP7 projects, but develop the UI logic individually for iOS and WP7.
Upvotes: 3
Reputation: 28059
You might want to look at Mono touch. It allows you to write native iPhone apps in C# so at least that way you only have one new thing to learn and that's iPhone framework Cococa Touch.
I personally found the Pragmatic Programmers: iPhone SDK Development book a good start.
Upvotes: 1