Uploaded September 2012 | Updated September 2026, 2 weeks ago
For more videos on technology, visit Techytube.com
By Pavel@Techytube
Objective-C provides many pre-defined classes to us. But sometimes we
need our own classes.
Every class has 2 files: a "ClassName.h" file and "ClassName.m" file.
The first one is called the interface or the declaration file, and the
other one is named the implementation or the definition file. In the
.h file we declare what our class IS, and what it DOES, and in the .m
file we specify HOW the class does those specific functionality.
Classes can have member variables and public methods. Member variables
are declared inside the interface files between curly braces. The
public methods are declared in the interface file, after the closing
curly brace, and implemented in the implementation file.
Usually, for every member variable there are 2 methods: a getter and a setter.
For more videos on technology, visit Techytube.com
By Pavel@Techytube
Objective-C provides many pre-defined classes to us. But sometimes we
need our own classes.
Every class has 2 files: a "ClassName.h" file and "ClassName.m" file.
The first one is called the interface or the declaration file, and the
other one is named the implementation or the definition file. In the
.h file we declare what our class IS, and what it DOES, and in the .m
file we specify HOW the class does those specific functionality.
Classes can have member variables and public methods. Member variables
are declared inside the interface files between curly braces. The
public methods are declared in the interface file, after the closing
curly brace, and implemented in the implementation file.
Usually, for every member variable there are 2 methods: a getter and a setter.






![Windows 8 Development - XAML DefaultViewModel Binding
Subscribe to our channel here for notifications on new video trainings. For more videos on technology, visit our website at http://www.techytube.com.
By mzmuda@techytube, for more from this author visit:
http://www.techytube.com/author/mzmuda
Next were going to hook up the UI for our main application page through the DefaultViewModel collection.
A page of type Items has a default View Model defined, and it is possible to hook up to a data source with only a few lines of code.
Once done, the page will render the items in the default template format. Of course,customization will likely take place from the default settings.
In this video, I will show you how to bind our data feeds to the DefaultViewModel[Items] element of our ItemsPage.
References
XAML Blog Reader - http://msdn.microsoft.com/en-us/library/windows/apps/br211380.aspx Windows 8 Development - XAML DefaultViewModel Binding](https://i.ytimg.com/vi/vjoYesVE3Xs/mqdefault.jpg)



