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: Integrate iAd in IOS (Tutorial)

iAd example Ads == $$ revenue, most of the average time spent by a user on a smartphone is dedicated to app interaction rather then making a call or reading sms. So that’s increase chance for app developer to get revenue by showing ads in their apps. Their are so many third party ads SDK,

iPhone Development: Integrate iAd in IOS (Tutorial) 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 »

iPhone Development: Resign or dismiss keyboard when return key pressed in UITextView

UITextview is a common UI(User interface) control used in iPhone app development as it allows user to write down long content. One of the most common problem faced by iPhone app developers is to dismiss the keyboard when user press return key on keyboard. All developers are familiar with resignFirstResponder method to dismiss keyboard. But

iPhone Development: Resign or dismiss keyboard when return key pressed in UITextView Read More »