iPhone App Store Review Scraper Source Code

June 19th, 2009

Someone was nice enough to open source this nice app used for grabbing reviews from the App Stores all over the world. I have been using it for a while and it works really nice.

http://code.google.com/p/reviewscraper/

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: Project Source, iPhone Apps, iPhone SDK Tags:

iPhone SDK Rounded Corners On A UIView

June 19th, 2009

http://softwaremaven.innerbrane.com/2009/05/rounding-corners-on-uiview.html
http://iphonedevelopment.blogspot.com/2008/11/creating-transparent-uiviews-rounded.html

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

iPhone SDK Dealing With Color

June 16th, 2009

Ars shows how to extend the iPhone’s SDK’s UIColor class to expose the internal color components for better developer use.

http://arstechnica.com/apple/guides/2009/02/iphone-development-accessing-uicolor-components.ars

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

iPhone SDK UIWebView Stop Bounce

June 16th, 2009
[(UIScrollView*)yourWebView.subviews objectAtIndex:0] setAllowsRubberBanding:NO];

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

iPhone SDK Load An Image From Web

June 16th, 2009
NSURL *url = [NSURL URLWithString:@"http://pathtoimage"];
NSData *imgData = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:imgData];

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

AppAroo Random Apps List Available Now Free!

June 8th, 2009

AppAroo just went into the App Store today.

Download AppAroo FREE!
Submit your app to AppAroo FREE!

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: AppAroo, iPhone Apps Tags:

Free iPhone UITabBar Icons

May 28th, 2009

Here are a few links to some people offering free icons for use in iphone apps.

http://www.glyfx.com/products/free_iphone.html

http://glyphish.com/

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

iPhone SDK Check If A Number Is Divisible By Another Number

May 28th, 2009
if(A % B == 0)
{
  // A is divisible by B
}

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

UITableView Scroll To Top

May 27th, 2009

Here is a simple snippet for scrolling a UITableView to the top.

[tableView setContentOffset:CGPointMake(0, 0) animated:NO];

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: iPhone SDK Tags:

UIImage Rounded Corners

May 27th, 2009

This guy made a nice class for rounding the corners on a UIImage.

UIImage Rounded corners

[Post to Twitter]  [Post to Plurk]  [Post to Yahoo Buzz]  [Post to Delicious]  [Post to Digg]  [Post to Ping.fm]  [Post to Reddit]  [Post to StumbleUpon] 

Categories: Classes, iPhone SDK Tags: