We blog on all things iOS

PNTToolbar – Safari like iOS toolbar

pnttoolbar-featured / No comments

The problem with we are faced when using mobile devices and especially when we are developing for mobile devices is how to present everything that a user needs. Mobile devices are relatively small and they never were intended for reading word documents. Nowadays we can see that we can read and also edit word documents […]

Read More

Custom Shape UIButton Tutorial

blog-custom-buttons-img1 / No comments

By default, the buttons on iOS are rectangular shaped. In most situations in which a developer can be that’s enough and we can do most of the things. But sometimes, application requirements are such that we need a different approach to resolve that situation. Let’s say you need the area of the button to be […]

Read More

How to start with iOS development

bigbang-1-642x361 / 2 comments

Thousands of apps are being developed everyday by people just like you. Apple’s iOS, their mobile operating system found on the iPhone, iPad, and iPod Touch offers unique developer tools to get you started in creating apps that could become useful, fun, and exciting. Your first step in becoming an iOS developer is joining the iOS Developer […]

Read More

Custom Grouped Cell Tutorial

custom-grouped-cell-header / 5 comments

UITableView has Plain and Grouped style. When you use grouped style top cell will have upper corners rounded, middle cell don’t have any of corners rounded and bottom cell have lower corners rounded. I’ll show you how to customize UITableView grouped look, so you’ll need 3 cell images: top, middle and bottom image. You’ll also […]

Read More

UIGestureRecognizer dependencies

xcode_1title / No comments

Common sense for gestures detection in iOS programming is to use UIGestureRecognizer class. Gestures you can detect are: tap, pinch, rotation, swipe, pan and long press. To define gesture recognizer you’ll have to use one of UIGestureRecognizer subclasses: UITapGestureRecognizer; UIPinchGestureRecognizer; UIRotationGestureRecognizer; UISwipeGestureRecognizer; UIPanGestureRecognizer; UILongPressGestureRecognizer. It’s possible to create dependencies between gesture recognizers and I’ll show […]

Read More