Xcode User Default Reference

Xcode User Default ReferenceThe Mac OS X user defaults system allows you to specify the values of program settings through your shell command editor instead of the program’s user interface (such as in the Preferences window). This facility allows program developers to give users access to features in early development or that may require particular knowledge to use properly. You use the defaults(1) command to access these settings. The Xcode application has several of these settings, which are also known as expert preferences or expert settings.
Read more

Xcode Debugging Guide (Tools & Languages: IDEs)

Xcode Debugging Guide (Tools & Languages: IDEs)Finding and eliminating bugs in your code is a critical phase of the development process. Xcode provides advanced debugging facilities, which include debugging from the text editor so that you don’t stray far from your code, and using the mini debugger, which provides a graphical debugging experience that is less intrusive on the running application than other methods. You can also use a more traditional, specialized graphical debugger, or the debugger console.
Read more

Xcode Installation Guide (Tools & Languages: IDEs)

Xcode Installation Guide (Tools & Languages: IDEs)Beginning in Mac OS X v10.5, Xcode supports installing multiple versions of the Xcode developer tools. When installing, the default location for the Xcode developer tools continues to be /Developer; however, you can install Xcode developer tools to any other directory or volume, including external drives. The Xcode directory can also be named something other than Developer. As with previous releases, the subdirectory hierarchy inside the installed Xcode directory should not be altered or rearranged.
Read more

Xcode Build System Guide (Tools & Languages: IDEs)

Xcode Build System Guide (Tools & Languages: IDEs)The build system is the part of the Xcode that is responsible for transforming the components of a project into one or more finished products. The build system takes a number of inputs and performs operations such as compiling, linking, copying files and so forth to produce an output—usually an application or other type software.
Read more

Programming with Google Android and Eclipse

Programming with Google Android and EclipseAndroid is an operating system based on Linux with a Java programming interface. It provides tools, e.g. a compiler, debugger and a device emulator as well as its own Java Virtual machine (Dalvik).
Android is created by the Open Handset Alliance which is lead by Google.
Android uses a special Java virtual machine (Dalvik) which is based on the Apache Harmony Java implementation. Dalvik uses a special Bytecode so that you have to use the Android compiler to create this special byte-code.
Android supports 2-D and 3-D graphics using the OpenGL libraries and supports data storage in a SQLLite database.
For development Google provides the Android Development Tools (ADT) for Eclipse to develop Android applications.
Read more

← Previous PageNext Page →