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… [...]
Author Archive
Beginning C++: Tutorial 1
February 14th, 2010
View Comments
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. [...]

