Tuesday, January 17, 2012

Wednesday, November 30, 2011

XMAS Jump

Addictive game for Iphone

Merry Christmas




Wednesday, April 13, 2011

Too Fat To Fly - Iphone

This fantastic jumping arcade game should be no. 1 on the AppStore.
If you like Doodle Jump, Angry Birds or Tiny Wings you will love this one.





Have fun!



Friday, April 8, 2011

Wing Tsiun Academy International - Iphone

Die Wing Tsiun Academy International Applikation ist die App für alle Kampfkünstler.
Sie bietet umfassende Informationen über die Kampfkunst Wing Tsiun und wird in Zukunft auch Bilderserien der Formen und Videos beinhalten.



Viel Spaß!



Friday, March 25, 2011

Tigerblood - Iphone

WINNING happened. The Charlie Sheen App Tigerblood is officially in the AppStore.

If you are a fan of winning, fastballs and Charlie this game is an absolute must have.







Have fun and support Charlie Sheen!!!




Wednesday, March 23, 2011

Aliens Revenge - Iphone

This is no odd space shooter. Navigate your XWing through the horde of Alien Spaceships and collect the bonuses by turning your phone.

Incredible Game!!!






Have fun!



Monday, March 21, 2011

Easter Bunny - Iphone

Easter Time, gaming time!

This is the most fun easter bunny jumping app in the Appstore!







Happy easteregg searching!



Friday, March 18, 2011

Devils Jump Extreme - Iphone

Here is a game for all jumping game fans.

Devils Jump Extreme ist extreme addicting. Just like Doodle Jump or Megajump you have to find your way upstairs and collect the coins.



Have fun!




Thursday, March 17, 2011

UIWebView

In this tutorial, we will open the Google home page in an UIWebView object.In this tutorial, we will open the Google home page in an UIWebView object.



We start by adding a new view to the project. Drag and drop an UIWebView control on the view. As always, create an controller to handle the view, I have named the view and the view controller “WebView” and “WebViewController” respectively. We create a new object of type UIWebView and also declare an associated property. We will use this object to connect “WebView” view placed on the view. This is how the header file will look like
FileName: WebViewController.h
@interface WebViewController : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic, retain) UIWebView *webView;
@end
In the implementation file, do not forget to synthesize and release the object’s memory. We then implement viewDidLoad method and this is how it will look like
FileName: WebViewController.m
- (void)viewDidLoad {
NSString *urlAddress = @”http://monaxos.blogspot.com”;
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[webView loadRequest:requestObj];
}
NSURL class is used to create an object which will hold the URL information. NSURLRequest is used to create a request to the URL. Method loadRequest of UIWebView is used to load the request in the UIWebView.
With some four lines of code, we can open up pages on the iPhone without using safari.
However, we do need to tell the application to load our “WebView” view when the application is finished launching.
WebViewTutorialAppDelegate.m
- (void)applicationDidFinishLaunching:(UIApplication *)application {
self.wvTutorial = [[WebViewController alloc] initWithNibName:@”WebView” bundle:[NSBundle mainBundle]];
[window addSubview:[wvTutorial view]];
// Override point for customization after app launch
[window makeKeyAndVisible];
}
Conclusion
The iPhone SDK makes it really easy to use a UIWebView object in an app. This is a good way to display your product web page in the app and not launch safari.

That´s it. Happy programming!

Apple Revisioning

As I try to get my apps into the appstore I had to learn that it is really hard to get through revisioning. I am used to build my android apps and put them directly to the market.
I understand that Apple tries to keep out unuseful apps but they don´t give any appropriate anwer on what is wrong about your app.
I have 5 Apps being revisioned so far and two of them were rejected. After asking for reasons in the revisioning system  I did not get a useful answer. All they write back is that the apps are not useful for common users.

Thank you Apple for letting me in the dark!

Hope the others go through.

Wednesday, March 16, 2011

Charlie Sheen App for Iphone

Get it now for jailbroken Iphones using Installous 4.

WINNING !