I wanted to create an iOS app which I have described in this post. Being a C# programer, it was so hard to learn Objective C, especially with the unusual syntax. Look at what it takes to create an instance of a class in Objective-C. ClassName *instanceName = [[ClassName alloc] init]; Seriously? Allocate and Initialize? Do I need to tell each…