Articles by author

Method invocation with timer

Featured Image

Method invocation with timer is something every developer sometime needs. First you make an instance of NSInvocation class and you add invocationWithMethodSignature.

2

How to add custom sound effects to iPhone app?

Featured Image

Here is simple code snippet (class) that enables you to add custom sound effects to iPhone application. As you can see procedure is fairly simple.

8

How to use NSUserDefaults to save state of switch?

Featured Image

If you have an application that should save for example state of a switch and you don’t want use database for that small request you can simply add instance of …

9

Dose application on iTunes store!

Featured Image

Beginning from today there is one iPhone app more on iTunes store developed by Surgeworks. Name of this free application is Dose and it’s ordered by Seachem Laboratories. Here is …

0

How to launch App Store from my iPhone application?

Featured Image

This is easy. Just follow the steps below and you will be over in less then minute.

26

Launching application via URL scheme

Featured Image

Here I will try to explain how to make your application launch another application on the system. There will be a minimal code written for these feature like everything else …

11

Playing audio while iPhone is locked

Featured Image

One more feature that Apple has provided to iDevelopers that is very useful. If you are building something like audio player iphone application and if you want player to play …

2

How to add volume level control in iPhone app?

Featured Image

Now, here is something from MediaPlayer framework that we are going to use if we want in most easiest way control level of volume in our application. This is very …

0

DivineOffice iPhoneApp now available in the App Store!

Featured Image

One of first iphone development project that I worked on as part of Surgeworks iPhone development team was application named Divine Office. This is application that’s grouped in lifestyle category …

1

What is a #pragma mark?

Featured Image

One of many features in Xcode that developers forgot to use is #pragma mark directives. What is a #pragma mark? #pragma marks are simple directives that help us better organize …

7