Skip to content
Tag

ios

11 notes.

Google Jun 18, 2014 1 min read

iOS Google Maps: Set Camera to show all Markers

The intend is to set the boundaries of the map to focus on all the markers. The 'GMSMapView' class used to have a method 'markers' which returned all…

Coding Mar 2, 2014 1 min read

iOS: Load custom UITableViewCell with Nib

Using the interface builder i created a custom 'UITableViewCell' named 'MyCustomCellNib', with a custom class file 'MyCustomCell' inherited from 'UITableViewCell'. This is code i used to load the cell with the nib.

iOS Jul 22, 2013 1 min read

iPhone(iOS) programming: Get Google Contacts

This tutorial walks you through on how to retrieve google contacts programatically.

iOS Jul 13, 2013 1 min read

Protected: iOS: Linea Pro tutorial – Scan Barcodes

This tutorial walks you through on how to get your Linea Pro device to scan a barcode.

iOS May 6, 2013 1 min read

iOS: UITableView – Swipe to delete row

Swipe-to-Delete feature shows a Delete button when a user swipes horizontally across a row.

iOS Jun 17, 2012 1 min read

iOS: Hide/Show the Status bar in an iPhone/iPad application

Lets see how to change the visibility of the status bar in an iphone/ipad application. The UIApplication class provides a centralized point of control and coordination for applications…

iOS Jun 17, 2012 1 min read

iOS: Change the Orientation of the Status Bar

Lets see how to change the orientation of the status bar programmatically in an iphone/ipad application. There are four orientations: Portrait, PortraitUpsideDown, LandscapeLeft, LandscapeRight. The…

iOS Jun 11, 2012 1 min read

iOS: How to get App’s Version number (CFBundleVersion)

  Recently, i had to make an update to one of my apps. I was trying to figure out a way to see if all the users have…

iOS May 4, 2012 1 min read

iOS: NSNotificationCenter – broadcast information within a program

An NSNotificationCenter object (or simply, notification center) provides a mechanism for broadcasting information within a program. An NSNotificationCenter object is essentially a notification…

iOS Apr 28, 2012 1 min read

iOS: Check whether internet connection is available

Here, i am just checking whether network connectivity is available to a server and its done synchronously. You can use Reachability if you need notifications when there is…

iOS Mar 24, 2012 3 min read

iOS LOGIN Screen Tutorial with Server Authentication – JSON – PHP

This tutorial will guide you to create a simple app with a Login screen which takes username and password from the user and then posts it to a url and parses the JSON response form the server.