Features of SWIFT Over OBJECTIVE C.

Swift as a programming language for the first time at the WWDC (Worldwide Developers Conference) 2014 2.0 was proudly presented as a good replacement for Objective C, Swift is a young programming language for ios and mac os platform. Due to its reliability and flexibility swift becoming more powerful and popular nowadays. swift is known as a protocol-oriented programming language. Powerful:  SWIFT is a solid and stable platform development does not end with statements with a semicolon, does not require header files, include type inference, strong typography, overloading operators, full Unicode support. Supports dynamic library: Dynamic libraries are pieces of …

Read moreFeatures of SWIFT Over OBJECTIVE C.

Simple TableView Demo for begginers.

Using UITableView we can display a listing of data in the form of a queue. It’s in the form of a one-dimensional row.UITableView representing a list of items using the UITableViewCell class.Its a single component repeating in the table view for the sake of representing a bunch of data. Here is an example for a beginner developer. Just follow the given steps to perform the implementation of the simple table view. Step 1: Create a new Xcode Project, Select Single view Application, Give a name to project and select language objective c, Set a location to save the project.   …

Read moreSimple TableView Demo for begginers.

Common function for Calling webservice objective-C.

 When you start writing applications for IOS (I-Phone), Communication with a Web server is a very crucial phase. You need to call web-services many times to get and post data from the server, As we all know here we have two methods to call web-services in IOS “GET” and  “POST”. Frequently POST method is used to implement the web-services. So I come up with a solution for calling web-services. Sometimes it becomes very hesitating to call web API in each view controller. According to Apple documentation, NSurlConnection is deprecated after IOS 7. NSurlSession is an alternative class that we can …

Read moreCommon function for Calling webservice objective-C.