Add Google Admob in IOS Apps

In IOS platform, Apple also provides a way to monetize IOS apps by iAd. However, the low fill rate is really a headache problem. Hence, Admob for IOS application is alternative way to make money from your apps. Admob provides a wide support for all mobile platforms, including Android apps, iPad apps, iPhone apps and Windows Phone apps. In post, Add Google Admob in Android Application, I give an example to show how to monetize android apps by Admob. Here, I will show you how to implement Google Admob in IOS apps.

Add Admob in iOS App
Add Admob in iOS App

Read more

iPhone Rss Reader App IOS Tutorial 3: XML Parser in IOS

In this post, I will continue to show you how to implement an rss reader iphone app in Xcode. First, I need to clarify that there is no different between iPhone app and iPad app, except the UI design. If you are working in Xcode 4.2 or later, you can design the UI in storyboard. It gives us a directly visual design experience. This is the 3rd tutorial for iPhone Rss Reader app development, you can find all tutorials about this topics:

In previous post, HTTP Network Programming in IOS, I give an example to show how to make HTTP GET request and HTTP POST request. Via HTTP connection, we can get the RSS Feed content in XML format. To show the title in our table view, we need to parse xml into our data structure first.

In IOS SDK, we can use NSXMLParser to handle all xml parsing jobs. The reason we choose XML instead of JSON is that RSS 2.0 feed is defined by XML. Here is a piece of RSS feed content example.
Read more

Customize UI Table View Cell By Adding Images and Style Text

When we create Apps using UITableView and UITableViewCell, the default UI usually can not meet our needs. In this tutorial, I will show you how to customize UITableViewCell step by step. From simple customization to complicated customization, this tutorial will cover how to change default UITableViewCell height, text font, size and color. It will also describe how to show image icon in default UITableView or totally customize a new table view cell from sketch.
Read more

iPhone Rss Reader App IOS Tutorial 2: HTTP Network Programming in IOS

To create a complete rss reader iphone app, http request and response are both necessary modules. Website, for example, WordPress powered website, usually provides rss feed feature. Hence, using our rss reader iphone app can easily get the rss feed contents from Http request. HTTP network programming in IOS is very simple. NSURLConnection class and related classes manage the common operations. If we want to download data to store in a file, we can use NSURLDownload, which will not used in our iphone rss reader app. In this tutorial, I will show you how to use NSURLConnection to send HTTP GET request and HTTP POST request.
Read more

iPhone Rss Reader App IOS Tutorial 1: StoryBoard UI Programming

Latest Update: Change the RSS Reader App to Read Twitter RSS Feed
Latest Update: Add Google AdMob in Rss Reader App

The best way to study new technology is learning from examples. The best example is a real app which is meaningful and useful. Among several features I’ve done in past few fews, I think any one feature can be a very good example for beginner to learn. Therefore, I decide to create some real apps which will serve very simple but useful functions.

In this IOS developer tutorial, I will create a RSS feed reader step by step. It will cover several IOS development knowledge:

Several weeks ago, I wrote an post, IOS Object C Storyboard Programming Tips For iPhone and iPad, which already covers some knowledge about StoryBoard UI programming. This time, I will use the storyboard to create an UITableViewController. In this tutorial, we will cover following topics:

  • how to build iPhone App in Storyboard
  • how to connect UI in storyboard with class file
  • how to show content in table view cell dynamically

Read more