techfountains.blogspot.com
Tech Fountains : The Technical Resources on the Web: December 2011
http://techfountains.blogspot.com/2011_12_01_archive.html
Tech Fountains : The Technical Resources on the Web. This blog is about reviewing sites that are considered valuable resources for technical information. Engineering, IT, programming, or any aspect considered technical. There are also tutorials, tech news, and not just technical websites' reviews, this will make our blog even more fun and richer :). Tuesday, December 13, 2011. Million dollar sales from home. This is directed to both coders and graphic designers. Themes sold multiple times on the web?
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: June 2015
http://xcodenoobies.blogspot.com/2015_06_01_archive.html
Sunday, June 7, 2015. How To: SKLabelNode Border Outline Quick Hack. Today I would like to share you a simple hack on SKLabelNode. Since it is a simple snippet, there will be no project to download. I am making my latest game (FreakOut) and was in need of SKLabelNode with outline. There are some 3rd party codes but I just want a simple and quick hack for it. So I made up this method:. Ok What I did was add another 4 SKLabelNode BEHIND the main label. Pretty crude but it works. Posted by emir Bytes.
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: How To: Implement In App Purchase The Easy Way, Ever.
http://xcodenoobies.blogspot.com/2012/04/implementing-inapp-purchase-in-xcode.html
Sunday, April 8, 2012. How To: Implement In App Purchase The Easy Way, Ever. There are plenty of IAP (In App Purchase) tutorials in the internet. BUT, all of them are damn complicated. None of the tutorials (that I found anyway) that shows the easiest way to implement IAP. If that is how you feel, read on. For example, over at Ray Wenderlich ( this tutorial. Firstly, for this tutorial, I am going to assume a few things:. 1 that you want to implement IAP by way of "feature" buttons. For this tutorial exam...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: How To: Prepare App For Submission and Submit To AppStore In 10 Steps
http://xcodenoobies.blogspot.com/2012/03/how-to-prepare-app-for-submission-and.html
Thursday, March 22, 2012. How To: Prepare App For Submission and Submit To AppStore In 10 Steps. App completed. So now what? The Apple documentation will help you a lot in preparing and submitting the app to the App Store. But, as I have experienced it myself long time ago, it could be a confusing and unclear steps to do this because there are no pictures to guide you through it and, some of the terms maybe totally new to some of you, noobs. Iconpng and icon.PNG and Icon.png are all different! Then open ...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: August 2015
http://xcodenoobies.blogspot.com/2015_08_01_archive.html
Wednesday, August 12, 2015. SKSpriteKit: How to fill SKScene background with a Texture? Just submitted my latest iOS game. Check out the demo video here: FreakOut - Tribute to Breakout (iOS Game). But unfortunately there is no such method in SKScene. The simplest method, is to add a single big SKSpriteNode in the SKScene, behind everything else (you can do this by specifiying its .zPosition to something really negative like -1000). Big sprite, however eats memory. Check out the result:. There is no downl...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: April 2013
http://xcodenoobies.blogspot.com/2013_04_01_archive.html
Saturday, April 6, 2013. Free Custom UISwitch - Flexible Colors and Size. What's up wonderful people? This is NOT a tutorial. :D. Also, since this component is created entirely on UIKit, it will look nice in all resolution (retina or not), ipad or whatever. Here is the screenshot of samples of custom UISwitch that can be created with this class:. Using this class is simple. 1 Copy Switchy.h and Switchy.m to your folder and add them to your project. 2 Add QuartzCore.framework to your project. MySwitch = [...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: December 2013
http://xcodenoobies.blogspot.com/2013_12_01_archive.html
Tuesday, December 3, 2013. How To: Make Custom iOS Number Keyboard on iPad. OMG I just submitted my latest app. XD. Well, I leave that part for you to make it pretty then. I am no artist. ;). As noobs, we don't need to go into actually customizing the UIKeyboard (because that probably be illegal and also it is probably too complicated for us, noobs) So how do we accomplish things the easy way? We are going to use the same custom method in PREVIOUS TUTORIAL. Once you tagged all UIButtons with unique numbe...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: September 2012
http://xcodenoobies.blogspot.com/2012_09_01_archive.html
Friday, September 7, 2012. How To: Facebook Upload Photo and Update Status Using SSO - Easiest Way (2012 Facebook SDK). Hiya Another tutorial with sample project for noobs! Anyway if you try to implement FB SDK and read how to upload a photo from your iOS apps, you'd be like, "WTF are all these things? I just want to upload a friggin photo to my wall! XCodeNoobies to the rescue! It is pretty easy to upload, but the "setting up" can be a pain because there are quite a lot of things to do. Import Availabil...
xcodenoobies.blogspot.com
XCode Tutorials for Beginners: Simple Ball Animation
http://xcodenoobies.blogspot.com/2009/12/simple-ball-animation.html
Friday, December 18, 2009. So that is why I created this tutorial blog - to help noobies get further from just displaying Hello World in their app. =p. Enough ramblings, lets get started. Here is how the app will look like. Immediately upon startup, you will see a small ball moving around randomly. Let's plan our code according to what we want to do with the app. 1 We want a ball - so we need a UIImageView AND a ball image. First, lets declare the ball in the header file:. Then, we need a global variable...