How to implement Flurry Analytics in iPhone app

If you want to have better insight into how your applications are being used, you can use Flurry Analytics. It is a free service, easily integrable into your iPhone applications. It provides accurate data about how consumers use your application. You will receive anonymous, aggregated usage and performance data, as well as robust reporting and…

Medjugorje app: all messages from Mary Queen of Peace on your iPhone and iPad!

December 08 2010: The Surgeworks Mobile development team for Surgeworks Inc.; an established software development company based in Salt Lake City Utah, anticipate the release to the App store, another in a series of notable mobile applications created for the spiritual benefit of the Catholic community. Be among the many who will discover within the…

RIM vs. Android vs. iPhone: Q3/2010 sales, market share, desirability percentages emerge from recent studies by comScore, Nielsen and Gartner

Nathan Becker from the Dow Jones Newswires reports that for the three-month period ended in October, Blackberry-maker RIM again had the biggest market share at 35.8%, according to comScore Inc. But that was down 3.5 percentage points from the prior three-month period. Meanwhile, Apple’s iPhone operating system remained at No. 2, gaining 0.8 point to…

The best Christmas themed 3D Word Game of 2010 Holiday season on iPhone and iPod Touch is here, and it’s FREE!

SALT LAKE CITY, Utah (November 22, 2010)—Surgeworks Mobile Lab — the mobile devices application design and development team at Surgeworks, Inc. — releases a free Christmas themed game for iPhone and iPod Touch, as a holiday season edition of the original 3D word game, Letter Blocks World. The game challenges players to manipulate 3D letter…

MPMoviePlayerController

To present video in your application use MPMoviePlayerController Class. Place it in UIViewController Class that is initialized with an url. – (id) initWithURL:(NSURL*)theURL { self = [super init]; if (self != nil) { [self setUrl:theURL]; } return self; } Initialize player with url. Change player’s control style or remove controls. Select type of scaling (fit,…