iPhone

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7

UITableView is the most common control used in iPhone app development.It basically used for displaying a list in our iPhone application. Though you can customize it  in many different ways as per your app.To set background color of your UITableView as transparent, we can use table.backgroundColor = [UIColor clearColor]; The above line of code works […]

iPhone Development: Set BackgroundColor of UITableView transparent in IOS7 Read More »

iPhone Developemnt: Set statusbar color to light content

Every phone has status bar that tells user about status of some of major parts of the phone, like battery, signal strength, running internet or not. Like other phone’s, iPhone also has status bar. As you can see in the picture, status bar in iPhone is shown on top of the phone screen. see picture

iPhone Developemnt: Set statusbar color to light content Read More »

iPhone Developement: Get list of Fonts available in iOS

Fonts are the important part of iPhone app development. To decorate text shown in our application, we can use wide variety of fonts available. You can give font to a label or other text display control by simply writing friendNameLabel.font = [UIFont systemFontOfSize:14.0]; It will give system font to our label. We can also give

iPhone Developement: Get list of Fonts available in iOS Read More »

iPhone Development: Load images asynchronously from server in IOS

In iPhone app development, most of time database for the app is remotely located or you can say a central database is used.If app stores user profile information then there must be 80% chances that every user of the app has its profile pic associated with his/her account. There are lot of techniques that allows

iPhone Development: Load images asynchronously from server in IOS Read More »

UIImagePickerController tutorial in IOS

Tags: #UIImagePickerController #IOS #iPhone SDK #IOS8 Images in iPhone are saved in gallery of the device.Since every app in iPhone has sandbox environment(did not interfere with other apps and has its own directory to save videos, photos, database etc.). In iPhone app development, we certainly need images for sharing with our friends or modifying those

UIImagePickerController tutorial in IOS Read More »

iPhone Development:Basic introduction of NSDictionay in IOS

NSDictionary is an efficient way that allows user to associate data with respect to particular keys. Every dictionary has a key value pair associated with it.Whenever you used web-services now days, you are seeing that the response from server comes in JSON(Java Script object notation) form, which usually comprises of key value pair, virtually called

iPhone Development:Basic introduction of NSDictionay in IOS Read More »

iPhone Development: Create a grid of buttons using UIScrollView

Creating a grid of buttons or images in iPhone app is a common requirement now day’s. The problem I am talking about is shown in given below image To achieve this requirement, we have various approaches 1) Use UITableView 2) Use UICollectionView 3) Create your own grid layout using UIImageView or UIButton(If you want to

iPhone Development: Create a grid of buttons using UIScrollView Read More »