Archive for the ‘Development’ Category

iPhone Tutorial: Sliders

Today, we will examining sliders. The UISlider will change the value of a a UILabel, or text. First, let’s start by creating a new view-based application project. For this tutorial, I will name it “Slider.” In SliderViewController.h After implementation Add the following… IBOutlet UISlider *mainSlider; IBOutlet UILabel *mainLabel; …Below brace and before @end, add this… [...]

Beginning C++: Tutorial 1

Welcome to the beginning C++ programming tutorials. In this series you will learn how to get started programming in C++. C++ is a very large programming language. Many people go crazy thinking they need to know EVERYTHING! Please, do not think you need to know every single line of code in c++. You might go crazy. [...]

Installing Admob into your iPhone apps

When I was trying to install ads in to one of my iPhone apps it was pretty hard to try and do, but I finally got it so I thought I would share with you guys how I did it. You can do it two ways; programmatically or through Interface Builder. I did this through [...]

Methods, and instances in Objective-C. (Part 2)

In our last objective-c tutorial we tackled the @interface section; this tutorial we are going to tackle the @implementation section. This part of the a program is where you tell the complier what we wrote in the @interface section mean. (To see the whole tutorial on that click here.) For example in our @interface section [...]

Classes, Methods, and instances in Objective-C. (Part 1)

In our last tutorial on Objective-c we showed you just the bare basics on classes, now lets dive in a little deeper. I’m going to try and teach this as basic as I can, though this tutorial will be a little lengthy thats why this is broken up into three different sections. We are going [...]

Getting started with Objective-c

Programming isn’t something you can learn over night, I know this first hand. I’ve been trying to learn a programming language for quite some time now. Its been on and off through the past 9 months. Objective-C is something I really want to learn because I can develop Mac OSX, iPhone, iPod Touch, and iPad [...]

How to create an RSS widget

Creating an RSS widget for OSX’s dashboard can be tricky if you dont have the right software. Apple bundles awesome developer software with OSX. I love ALL of Apples developer software and I know nothing that will replace it. So here in this tutorial I show you how to create an RSS widget for your [...]