Book Image

Mac Application Development by Example: Beginner's Guide

By : Robert Wiebe
Book Image

Mac Application Development by Example: Beginner's Guide

By: Robert Wiebe

Overview of this book

It's never been more important to have the ability to develop an App for Mac OS X. Whether it's a System Preference, a business app that accesses information in the Cloud, or an application that uses multi-touch or uses a camera, you will have a solid foundation in app development to get the job done.Mac Application Development by Example takes you through all the aspects of using the Xcode development tool to produce complete working apps that cover a broad range of topics. This comprehensive book on developing applications covers everything a beginner needs to know and demonstrates the concepts using examples that take advantage of some of the most interesting hardware and software features available.You will discover the fundamental aspects of OS X development while investigating innovative platform features to create a final product which take advantage of the unique aspects of OS X.Learn how to use Xcode tools to create and share Mac OS X apps. Explore numerous OS X features including iCloud, multi-touch trackpad, and the iSight camera.This book provides you with an illustrated and annotated guide to bring your idea to life using fundamental concepts that work on Mac.
Table of Contents (17 chapters)
Mac Application Development by Example Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

What is an XML file?


Since the list of currency exchange rates that we want to download from the Internet is provided as an XML file, it's a good idea if we have an understanding of just what an XML file is in general terms.

So let's take a step back and first answer the question, for what is XML an abbreviation? XML is an abbreviation for eXtensible Markup Language. As its name implies, XML is an evolution of something even simpler known as a Markup Language.

Essentially a Markup Language allows us to embed tags, using whatever syntax is used by the language, into a document and have those tags interpreted as formatting rather than content. A good example is bold text or a font. Somehow within our document we need to indicate that some text is in bold face or that some text is in a different font. We need to indicate both the attribute type and its span.

Markup Languages have been used on computers since the days of mainframes. Apps like Microsoft Word or Word Perfect originally had their...