In part 3 of my PHP Security video tutorial I go over the most vulnerable ways hackers attack websites. I focus a lot on authentication and client side attacks. Specifically I go over the tools and techniques used to:
Crack user ids and passwords
Catch and manipulate data sent from the browser to the...
Learn Objective C Part 1
In this tutorial I will begin by explaining Object Oriented Programming using Objective C. If you would prefer to read the article click on Learn Objective C Tutorial, otherwise watch the video below.
If you find this article helpful, please click here [googleplusone] so more people...
This is the second series I’m doing on iPhone and iPad programming. The first time I covered the underlying language called Objective C. If you haven’t seen that already, go there first. Objective C Tutorial
In this series I will teach you how to program for the iPhone / iPad, by showing you how to make...
Object Oriented Programming with Objective C
In a previous article, I explained how you create object’s, instance variable’s and method’s in Objective C. In this article, I’ll explain Inheritance, Polymorphism and go over other OOP topic’s I missed previously.
Briefly, Inheritance provide’s you...
Looping, Decision Making & Arithmetic Operation’s
In this article, I’ll review how to perform action’s repetitively with looping. I’ll then cover how to program decision making into your Objective C code. Finally, I’ll go over all of the arithmetic operation’s that are built into Objective...
Data Type’s in Objective C
In this article I’ll go over all of the data type’s available to you with Objective C. They include:
int: Positive or negative number’s, without a decimal point
float: Positive or negative numbers, with a decimal point
double: Large floats
char: Single character’s
id:...
In the previous article I gave you a brief overview of Object Oriented programming and showed you a little Objective C code. Objective C is the language used to program on all the Apple device’s and in this article you’ll learn a lot more about it.
Software you Need
To develop iPhone app’s you will...
Here I begin my tutorial on iPhone, iPod Touch and iPad development. It’s surprisingly easy to develop for these device’s if you have a background in programming.
You must learn a new language to be able to develop anything on these device’s and that is Objective C. In this tutorial I will begin by...