Tags
In this screencast Mohammad Azam will introduce how to create a simple Hello World application using Objective-C.
17 Thursday May 2012
Posted in iOS
Tags
In this screencast Mohammad Azam will introduce how to create a simple Hello World application using Objective-C.
16 Wednesday May 2012
Posted in Programming
Tags
A tutorial teaching you how to bounce an image around the screen. When it hits the edge it will move in the opposite direction. Main Code: -(void)imageMove { collisionImage.center = CGPointMake(collisionImage.center.x +imagePositon.x, collisionImage.center.y +imagePositon.y); if (collisionImage.center.x “GreaterThanSymbol” 290 || collisionImage.center.x “LessThanSymbol” 29) imagePositon.x = -imagePositon.x; if (collisionImage.center.y “GreaterThanSymbol” 441 || collisionImage.center.y “LessThanSymbol” 18) imagePositon.y = -imagePositon.y; } – (void)viewDidLoad { [super viewDidLoad]; imagePositon = CGPointMake(10, 10); timer = [NSTimer scheduledTimerWithTimeInterval:0.05 target:self selector:@selector(imageMove) userInfo:nil repeats:YES]; } Next Video: www.youtube.com First Video: www.youtube.com Link: developer.apple.com Website: failcake.webs.com Twitter: twitter.com Channel: youtube.com
16 Wednesday May 2012
Posted in iOS
Tags
In this screencast Mohammad Azam will demonstrate how to use xCode. This screencast will explore the basic functionality provided by the xCode editor.
15 Tuesday May 2012
Posted in iOS
Tags
In this screencast Mohammad Azam will demonstrate how to get started with iOS development. Azam will discuss what things are necessary to develop for the iPhone/iPod/iPad devices.
15 Tuesday May 2012
Posted in Programming
Tags
Learn how to add sound to your app! You can overlap sound files and play, pause, stop the sound. This also works with mp3 files but wav files work better. Also, sorry about the loud sound in the iPhone Simulator! Website: www.pixelcubestudios.com Twitter twitter.com
14 Monday May 2012
Posted in iOS
14 Monday May 2012
Posted in Programming
Tags
The first of two parts. This video goes over my contemplated teaching tactics and how to create a very simple Hello World application. See part two: www.youtube.com
14 Monday May 2012
Posted in iOS
Tags
www.E-String.com for more info. Overview of developing for iPhone, iPod and iPad. Touches on what you need to know and how to get started. I’m sure you’ll find it interesting, challenging and rewarding. If you have any questions or have any comments please do not hesitate to contact me.
14 Monday May 2012
Posted in Programming
Tags
Learn how to animate a UIProgressView or “loading bar”! This is very useful for all types of applications! Subscribe to get more iPhone Programming tutorials. Also, version 1.2 of MindBlender Quiz should be approved soon! Check it out here: www.itunes.com Twitter: www.twitter.com/PixelCUBEstudio Website: www.pixelcubestudios.com
18 Wednesday Apr 2012
Posted in Programming
Tags
In this Xcode tutorial I teach you how to read and write a plist file. Next Tutorial: www.youtube.com Main code used: In .h need: -(NSString *) dataFilePath; -(void) readPlist; -(void) writePlist; In .m need: -(NSString *) dataFilePath { NSArray *path = NSSearchPathForDire…