Lab 1: My first iphone application

Size: px
Start display at page:

Download "Lab 1: My first iphone application"

Transcription

1 Web 2.0 and iphone Application Development Workshop This lab is prepared by: Department of Electrical and Electronic Engineering, Faculty of Engineering, The University of Hong Kong Lab 1: My first iphone application Objective: The training program provides an overview of iphone application development and distribution. Students are required to create a simple iphone Application and test it on both simulator and device. After this lab session, students should be familiar with the development tools including Xcode, Interface Builder and Simulator. Introduction: iphone SDK includes the Xcode IDE (Figure 1a), Interface Builder (Figure 1b), iphone Simulator (Figure 1c) and other tools for developing iphone applications. The main application of iphone SDK is the integrated development environment (IDE) named Xcode. Interface Builder is a visual design tool for creating user interface. Simulator allows you to run your application on mac computer before testing on device or uploading it to App Store. Application distribution involves ad hoc distribution and distribution to App Store. Both methods require a developer account to derive certificates and provisioning profiles. In the lab sessions, ad hoc distribution is applied. Figure 1 a. Xcode IDE b. Interface Builder c. Simulator My first iphone application 1

2 Equipment: 1. A Macintosh computer with iphone SDK installed. 2. An iphone device such as iphone or ipod touch. 3. ipod USB cable. Duration: The duration of this training lab session is about 1.5 hours. Procedure: 1. Create a new project (Part A) 2. Use Interface Builder to create the interface (Part B,C) 3. Debug and run on simulator (Part D) 4. Test on device (Part E) 5. Extra Practice My first iphone application 2

3 A Create a new project Figure 2 Choose a template 1. Open Xcode from the dock. 2. Select File > New Project. 3. Choose View based Application as a template for your project. (Figure 2) 4. Name the project, say MyFirstApp. 5. From Groups & Files (Figure 3), you can find application delegate (e.g. MyFIrstAppAppDelegate) and view controller files (e.g. MyFirstAppViewController) in Classes. Application delegate is generated automatically for a project. You also have view controller files since the template is View based Application. 6. Interface Builder Files at the bottom contains files with.xib extension. (Figure 3) My first iphone application 3

4 Figure 3 Classes and Interface Builder Files Figure 4 Open Xib file in Interface Builder B Display a selected picture as background in Interface Builder 1. Double click MyFirstAppViewController.xib in Interface Builder Files. It opens in Interface Builder. Three objects are involved as shown in Figure 4. You may find that the object called View also opens. If not, double click View. 2. Now, you need to add a background to your interface. In the menu of Interface Builder, select Tools > Library. Find Image View under Cocoa Touch / Data Views (Figure 5). Drag an Image View to the window of View or double click Image View to add it directly. Adjust the UIImageView s size and position. Because it is used as a background image, make sure that it covers the whole area of your interface. (Figure 6) My first iphone application 4

5 Figure 5 Create a UIImageView from library Figure 6 Place a UIImageView in view 3. To complete background setting, you need to import an image and apply it in the UIImageView. Download directions.jpg from the server. Move to Xcode. Drag it to your project (Figure 3). You may put it under the folder named Resources. Check copy items into destination group s folder. Click add. (Figure 7) My first iphone application 5

6 Figure 7 Add an image file to project Figure 8 Set an image for UIImageView 4. Modify UIImageView s attribute. In Interface Builder, click UIImageView. In the menu of Interface Builder, select Tools > Attributes Inspector. In Image View Attributes, type directions.jpg (Figure 8). Press enter and the image displays (Figure 9). Figure 9 Background completed My first iphone application 6

7 C Create a label in Interface Builder 1. Find another object called Label from library ( Tools > Library ). Label, namely UILabel, is under the folder of Inputs & Values. UILabel is used to display static text. 2. Drag it to your interface (above UIImageView). Double click to input the text. Modify Label s attributes. Try to adjust font, font size and color in Label Attributes ( Tools > Attributes Inspector ). See Figure 10. Remember to save Xib file! ( File > Save ) Figure 10 Label added D Debug and run on simulator 1. Move to Xcode. From the toolbar (Figure 11) on the top of the window, you can see Overview and the green button Build and Run or Build and Go. You may customize the toolbar (control+click toolbar). Figure 11 Toolbar of Xcode 2. In the menu of Overview (Figure 12), you can change the active SDK and active Configuration. Now select iphone Simulator (any version) and debug. My first iphone application 7

8 Figure 12 Active SDK and Configuration (Simulator) Figure 13 Active SDK and Configuration (Device) 2. Click Build and Run. Save the project. Now you see your application on simulator. Note: If there s any error or warning, you should correct it. Build and Debug is helpful. If you want to see some intermediate result (e.g. use NSLog to print some variables), you may need console to demonstrate. In Xcode preferences, you can configure the setting of debugging. Try to select Show Console & Debugger in On Start. E Test on device Generally speaking, developers test applications on simulator at first for it s quite convenient to debug. Installing application on iphone or ipod touch requires more time than that on simulator. However, a few functions such as accelerometer cannot be realized on simulator. Besides, in some cases, CPU and memory decide the differences on performance between simulator and device. If you find your application works well on your mac, you still have to download it to device for further test. To download application developed in your mac to your iphone/ipod touch, you must register your device in iphone dev center where you derive your certificate and provisioning profile. You also have to download a provisioning profile for development to device. This approach has already been done. So you are not required to do that in the lab. 1. Connect ipod touch to mac computer with ipod USB cable. Do not synchronize ipod touch while you are installing an application. 2. Select iphone Device (any version) instead of Simulator. (Figure 13) Click Build and Run and wait. My first iphone application 8

9 Extra Practice 1. Download AlternateViews.zip from the server. 2. Open the project. (Double Click AlternateViews.xcodeproj ) 3. Run the application on simulator. (Figure 14) 4. In the menu of simulator, select Hardware > Rotate Right or Rotate Left. (Figure 15) You will see landscape view of the application. (Figure 16) 5. Install the application on device. 6. Add a background to both Portrait View and Landscape View in Interface Bulider. (Hint: Find their nib files and modify them in Interface Builder.) Note: Size of background image is 320 x 480 pixel (Portrait View) or 480 x 320 pixel (Landscape View). You may download landscapebg.jpg and portraitbg.jpg from the server and adjust the size and position of UIImageView according to Figure Install amended application on both simulator and device. Figure 14 Portrait View on Simulator Figure 15 Rotate device on Simulator My first iphone application 9

10 Figure 16 Landscape View on Simulator Figure 17 Size and Position for Background image (Portrait) End of Lab 1 My first iphone application 10

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

MEAP Edition Manning Early Access Program Hello! ios Development version 14

MEAP Edition Manning Early Access Program Hello! ios Development version 14 MEAP Edition Manning Early Access Program Hello! ios Development version 14 Copyright 2013 Manning Publications For more information on this and other Manning titles go to www.manning.com brief contents

More information

Xcode Application note

Xcode Application note 1 Xcode Application note - how to export file from an ios application Feifei Li ECE480 Design Team 10 2 Table of Contents Introduction... 3 Get Started... 3 Familiar with Xcode... 6 Create user interface...

More information

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system.

Chapter 1. Introduction to ios Development. Objectives: Touch on the history of ios and the devices that support this operating system. Chapter 1 Introduction to ios Development Objectives: Touch on the history of ios and the devices that support this operating system. Understand the different types of Apple Developer accounts. Introduce

More information

geniusport mobility training experts

geniusport mobility training experts geniu po About Geniusport: GeniusPort is a Pioneer and India's No. 1 Training Center for Mobile Technologies like Apple ios, Google Android and Windows 8 Applications Development. A one stop destination

More information

Step by Step. Use the Cloud Login Website

Step by Step. Use the Cloud Login Website Step by Step HOW TO Use the Cloud Login Website This How To article will show you how to use the Cloud Login Website to upload and download your files from the cloud. For a complete list of available How

More information

Knappsack ios Build and Deployment Guide

Knappsack ios Build and Deployment Guide Knappsack ios Build and Deployment Guide So you want to build and deploy an ios application to Knappsack? This guide will help walk you through all the necessary steps for a successful build and deployment.

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

A product of Byte Works, Inc. http://www.byteworks.us. Credits Programming Mike Westerfield. Art Karen Bennett. Documentation Mike Westerfield

A product of Byte Works, Inc. http://www.byteworks.us. Credits Programming Mike Westerfield. Art Karen Bennett. Documentation Mike Westerfield A product of Byte Works, Inc. http://www.byteworks.us Credits Programming Mike Westerfield Art Karen Bennett Documentation Mike Westerfield Copyright 2013 By The Byte Works, Inc. All Rights Reserved Apple,

More information

Save and Restore Backups using itunes File

Save and Restore Backups using itunes File Save and Restore Backups using itunes File Make and Export a Backup Access the Options On ipad, tap right-most button in the toolbar to access the Options. On iphone/ipod touch, tap the Views button (double

More information

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011

ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 ios Development Tutorial Nikhil Yadav CSE 40816/60816: Pervasive Health 09/09/2011 Healthcare iphone apps Various apps for the iphone available Diagnostic, Diet and Nutrition, Fitness, Emotional Well-being

More information

eggon SDK for ios 7 Integration Instructions

eggon SDK for ios 7 Integration Instructions eggon SDK for ios 7 Integration Instructions The eggon SDK requires a few simple steps in order to be used within your ios 7 application. Environment This guide assumes that a standard ios Development

More information

OS X LION SET UP THE SYSTEM

OS X LION SET UP THE SYSTEM OS X LION SET UP THE SYSTEM OS X Lion Set Up the System Last Edited: 2012-07-10 1 Personalize the Interface... 3 Organize the Desktop... 3 Configure Apple Trackpad... 4 Configure Apple Magic Mouse... 6

More information

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013

Mobility Introduction Android. Duration 16 Working days Start Date 1 st Oct 2013 Mobility Introduction Android Duration 16 Working days Start Date 1 st Oct 2013 Day 1 1. Introduction to Mobility 1.1. Mobility Paradigm 1.2. Desktop to Mobile 1.3. Evolution of the Mobile 1.4. Smart phone

More information

App Distribution Guide

App Distribution Guide App Distribution Guide Contents About App Distribution 10 At a Glance 11 Enroll in an Apple Developer Program to Distribute Your App 11 Generate Certificates and Register Your Devices 11 Add Store Capabilities

More information

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster

Creating a Poster in PowerPoint 2010. A. Set Up Your Poster View the Best Practices in Poster Design located at http://www.emich.edu/training/poster before you begin creating a poster. Then in PowerPoint: (A) set up the poster size and orientation, (B) add and

More information

Making and Exporting a Backup

Making and Exporting a Backup Save and Restore Backups using itunes File Sharing on iphone/ipod touch Making and Exporting a Backup Hiding the keyboard Launch Proloquo4Text by tapping on its icon. If the keyboard is visible, tap the

More information

Mobility with Eye-Fi Scanning Guide

Mobility with Eye-Fi Scanning Guide Mobility with Eye-Fi Scanning Guide Scan and Transfer Images Wirelessly with Eye-Fi This document is to be used in addition to the scanner s user guide located on the installation disc. The instructions

More information

INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011

INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011 INTRODUCTION TO IOS CSCI 4448/5448: OBJECT-ORIENTED ANALYSIS & DESIGN LECTURE 13 02/22/2011 1 Goals of the Lecture Present an introduction to ios Program Coverage of the language will be INCOMPLETE We

More information

on-hand viewer on iphone / ipod touch manual installation and configuration of an FTP server for Mac OS X to transfer data to on-hand viewer application on iphone / ipod touch table of contents 1. Introduction

More information

Export / Import using itunes File Sharing

Export / Import using itunes File Sharing Export to itunes File Sharing Access Edit Mode Tap the pencil button on the bottom toolbar to access Edit Mode. Select a Button or a Folder Select to the button(s) you want to export/ import. A checkmark

More information

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8 v. 20120510 Table of Contents RTiPanel Overview and Requirements... 3 Software Requirements:... 3 Hardware Requirements:... 3 Network Requirements:... 3 Licensing Requirements:... 4 Basic Integration Designer

More information

How to start creating a VoIP solution with Ozeki VoIP SIP SDK

How to start creating a VoIP solution with Ozeki VoIP SIP SDK Lesson 2 How to start creating a VoIP solution with Ozeki VoIP SIP SDK Abstract 2012. 01. 12. The second lesson of will show you all the basic steps of starting VoIP application programming with Ozeki

More information

TakeMySelfie ios App Documentation

TakeMySelfie ios App Documentation TakeMySelfie ios App Documentation What is TakeMySelfie ios App? TakeMySelfie App allows a user to take his own picture from front camera. User can apply various photo effects to the front camera. Programmers

More information

Page1. Tera Doty-Blance http://library.cortland.edu/ttc/training_center.asp

Page1. Tera Doty-Blance http://library.cortland.edu/ttc/training_center.asp Page1 Contents Setting Up a Student Web Account on the SUNY Cortland Web Server... 2 Opening the iweb Application and Choosing a Template... 3 Publishing Your iweb site to Student Web... 5 Creating a Copy

More information

ios App Development for Everyone

ios App Development for Everyone ios App Development for Everyone Kevin McNeish Getting Started Plugging into the Mother Ship Welcome! This is the part of the book where you learn how to get yourself and your computer set for App development

More information

Objective C and iphone App

Objective C and iphone App Objective C and iphone App 6 Months Course Description: Understanding the Objective-C programming language is critical to becoming a successful iphone developer. This class is designed to teach you a solid

More information

How to download your NI Press ebook for Nook Users

How to download your NI Press ebook for Nook Users How to download your NI Press ebook for Nook Users Downloading and Transferring Content via USB Nook 1 st Edition - NOOK HD: Nook1st Edition readers, please follow the steps for below to side-load a NOOK

More information

Dacorum U3A Apple Mac Users Group Agenda TUESDAY 7th July 2015 Time Machine Backups for your MAC & ipad?

Dacorum U3A Apple Mac Users Group Agenda TUESDAY 7th July 2015 Time Machine Backups for your MAC & ipad? Agenda TUESDAY 7th July 2015 Time Machine Backups for your MAC & ipad? 1 Overview Time Machine Backups Mac Basics: Time Machine backs up your Mac Time Machine is the built-in backup feature of OS X. It

More information

With the smart remote editor, a visualization for an ipod-touch, iphone or ipad can be created in a simple way.

With the smart remote editor, a visualization for an ipod-touch, iphone or ipad can be created in a simple way. Smart remote editor With the smart remote editor, a visualization for an ipod-touch, iphone or ipad can be created in a simple way. 1. Creating a project. We consider to create a new folder for each project,

More information

Lync for Mac Get Help Guide

Lync for Mac Get Help Guide How do I download the Lync Client Tool for Mac? The Lync Client allows you to use your computer as a telephone as well as enabling the unified communication features. Part 1: Installing the Lync Client

More information

Avira Secure Backup INSTALLATION GUIDE. HowTo

Avira Secure Backup INSTALLATION GUIDE. HowTo Avira Secure Backup INSTALLATION GUIDE HowTo Table of contents 1. Introduction... 3 2. System Requirements... 3 2.1 Windows...3 2.2 Mac...4 2.3 ios (iphone, ipad and ipod touch)...4 3. Avira Secure Backup

More information

The End is Near. Options for File Management and Storage

The End is Near. Options for File Management and Storage The End is Near Options for File Management and Storage Options Google Drive icloud Drive USB Drives H:Drive icloud icloud IOS 8 icloud Drive icloud With icloud Drive, you can safely store all your presentations,

More information

Installation Guide for Kurzweil 3000 Web License (Visual Walkthrough) Macintosh Version 14

Installation Guide for Kurzweil 3000 Web License (Visual Walkthrough) Macintosh Version 14 Installation Guide for Kurzweil 3000 Web License (Visual Walkthrough) Macintosh Version 14 Follow the instructions in this guide to download, install, and get started with Kurzweil 3000 Web License (K3000).

More information

Installation Instructions

Installation Instructions Avira Secure Backup Installation Instructions Trademarks and Copyright Trademarks Windows is a registered trademark of the Microsoft Corporation in the United States and other countries. All other brand

More information

Configuring a Macintosh Laptop to Use Multiple Displays

Configuring a Macintosh Laptop to Use Multiple Displays Configuring a Macintosh Laptop to Use Multiple Displays These instructions may be useful if you are connecting a Mac laptop to a secondary monitor or to a projector within the Ideal Learning Environment

More information

Setting up RDP on your ipad

Setting up RDP on your ipad This document will show you how to set up RDP (Remote Desktop Protocol) on your ipad. It will cover the following: Step 1: Creating an itunes account (if necessary) Step 2: Using the App Store Step 3:

More information

Developing Applications for ios

Developing Applications for ios Developing Applications for ios Lecture 1: Mobile Applications Development Radu Ionescu raducu.ionescu@gmail.com Faculty of Mathematics and Computer Science University of Bucharest Content Key concepts

More information

An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6

An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6 1 2 3 4 An Introduction to Modern Software Development Tools Creating A Simple GUI-Based Tool Appleʼs XCode Version 3.2.6 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 Charles J. Ammon / Penn State August, 2011

More information

Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices!

Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices! Nook (Non-Tablet) Compatible with Barnes & Noble ebooks and Adobe EPUB ebook Step-by-Step Instructions Download and Transfer of OverDrive Titles to Devices! If this is the first time you are using your

More information

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Jeff Linwood 1st Chapter, Early Release Introduction... 3 Prerequisites... 3 Introduction to Mobile Apps...

More information

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe. Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use

More information

1 от 6 8.01.2012 22:45

1 от 6 8.01.2012 22:45 Welcome, Yuriy Donev Edit Profile Log out Provisioning Portal : Astea Solutions AD Go to ios Dev Center Manage History How To Assigning Apple Devices to your Team The Devices section of the ios Provisioning

More information

VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC

VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC VIRTUAL DESKTOP COMPANION SOFTWARE FOR MAC USER MANUAL 25206A ABOUT THIS MANUAL Thank you for getting the Boogie Board Sync 9.7 LCD ewriter. This manual will help you with the Sync Virtual Desktop Companion

More information

Windows Movie Maker 2012

Windows Movie Maker 2012 Windows Movie Maker 2012 Open Windows Movie Maker A shortcut for Movie Maker should be on the desktop, but if it is not, you can search for the program by touching the right edge of the screen and swiping

More information

Axxon Monitor. User Manual

Axxon Monitor. User Manual Axxon Monitor by DComplex LLC User Manual This document has the latest documentation about the Axxon Monitor, iphone/ipad app by DComplex LLC, for monitoring Axxon Intellect Video Management System. Download

More information

Neehr Perfect Educational EHR STUDENT GUIDE

Neehr Perfect Educational EHR STUDENT GUIDE Neehr Perfect Educational EHR STUDENT GUIDE I. Introduction... 1 II. Quick Facts... 1 III. Creating Your Account... 1 IV. My Account Already Exists... 3 V. Applying Your Subscription... 4 VI. Logging in

More information

Basic Android Setup. 2014 Windows Version

Basic Android Setup. 2014 Windows Version Basic Android Setup 2014 Windows Version Introduction In this tutorial, we will learn how to set up the Android software development environment and how to implement image processing operations on an Android

More information

Optional Bluetooth Firmware Update HW05-SW01.27.20 Enables Bluetooth AVRCP control and metadata display for iphone 5 and ios 6 users.

Optional Bluetooth Firmware Update HW05-SW01.27.20 Enables Bluetooth AVRCP control and metadata display for iphone 5 and ios 6 users. January 29, 2013 Optional Bluetooth Firmware Update HW05-SW01.27.20 Enables Bluetooth AVRCP control and metadata display for iphone 5 and ios 6 users. IMPORTANT Please download and print these Bluetooth

More information

Connecting to Staffmail with Outlook 2011 on Mac OS X

Connecting to Staffmail with Outlook 2011 on Mac OS X EXSEED Client Integration Testing Version 1.0 Connecting to Staffmail with Outlook 2011 on Mac OS X This document will help you connect Outlook 2011 for Mac OS X on a computer that is not on Edinburgh

More information

How to Connect to Berkeley College Virtual Lab Using Windows

How to Connect to Berkeley College Virtual Lab Using Windows How to Connect to Berkeley College Virtual Lab Using Windows Minimum Requirements Create and Save a Remote Desktop Services Connection Connecting to a Remote Desktop Services session Copy Files between

More information

Introduction to Programming with Xojo

Introduction to Programming with Xojo Introduction to Programming with Xojo IOS ADDENDUM BY BRAD RHINE Fall 2015 Edition Copyright 2013-2015 by Xojo, Inc. This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike

More information

Parallels Remote Application Server

Parallels Remote Application Server Parallels Remote Application Server Parallels Client for Windows Phone User's Guide v15 Copyright 1999-2016 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH

More information

Apple OS / ios Installation Guide Includes MAC OSx and ios based devices

Apple OS / ios Installation Guide Includes MAC OSx and ios based devices Apple OS / ios Installation Guide Includes MAC OSx and ios based devices Updated 8/10/2012 This page intentionally left blank Using SPOT on a Apple OS Device... 4 Summary... 4 Requirements... 4 Usage and

More information

HP RDX Continuous Data Protection Software Quickstart Guide

HP RDX Continuous Data Protection Software Quickstart Guide HP RDX Continuous Data Protection Software Quickstart Guide *5697-3351* HP Part Number: 5697-3351 Published: May 2014 Edition: Fourth Copyright 2008 2014 Hewlett-Packard Development Company, L.P. Microsoft,

More information

Complete Control Mobile App

Complete Control Mobile App for use with a Complete Control system from URC ipad iphone/ipod touch Overview As with ios apps for the ipad, iphone and ipod touch, finding your way around the Complete Control Mobile App is simple.

More information

Engage ios App Administrator s Guide

Engage ios App Administrator s Guide Engage ios App Administrator s Guide Contents Contents... 1 Introduction... 2 Target Audience... 2 Devices Supported... 2 SharePoint Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying

More information

Getting Started with Tizen SDK : How to develop a Web app. Hong Gyungpyo 洪 競 杓 Samsung Electronics Co., Ltd

Getting Started with Tizen SDK : How to develop a Web app. Hong Gyungpyo 洪 競 杓 Samsung Electronics Co., Ltd Getting Started with Tizen SDK : How to develop a Web app Hong Gyungpyo 洪 競 杓 Samsung Electronics Co., Ltd Introduction to Tizen SDK Tizen Platform (1/2) Application Web Applications Native Applications

More information

I. Create a New Project

I. Create a New Project Judith Herb College of Education imovie 09 Tutorial Students in the Judith Herb College of Education are required to complete video projects in many classes as well as their student teaching. These videos

More information

VIRTUAL DESKTOP COMPANION SOFTWARE FOR WINDOWS

VIRTUAL DESKTOP COMPANION SOFTWARE FOR WINDOWS VIRTUAL DESKTOP COMPANION SOFTWARE FOR WINDOWS USER MANUAL 25205A About this Manual Thank you for getting the Boogie Board Sync 9.7 LCD ewriter. This manual will help you with the Sync Virtual Desktop

More information

How to use Microsoft Project? Basic Training to Help You during the BYI challenge

How to use Microsoft Project? Basic Training to Help You during the BYI challenge How to use Microsoft Project? Basic Training to Help You during the BYI challenge Table of Contents I. Main Concepts 1. Overview of Microsoft Project 2. Explanation of the main concepts II. How to : Create

More information

Assignment I Walkthrough

Assignment I Walkthrough Assignment I Walkthrough Objective Reproduce the demonstration (building a calculator) given in class. Goals 1. Downloading and installing the ios4 SDK. 2. Creating a new project in Xcode. 3. Defining

More information

Entire Connection Version 4.2.1

Entire Connection Version 4.2.1 Entire Connection Entire Connection is a software package that allows users to log on to FAMIS and download and print screens in FAMIS. Once logged on to FAMIS, see M08 for Entire Connection Download screens,

More information

Neehr Perfect Educational EHR STUDENT GUIDE

Neehr Perfect Educational EHR STUDENT GUIDE Neehr Perfect Educational EHR STUDENT GUIDE I. Introduction... 1 II. Quick Facts... 1 III. Creating Your Account... 2 IV. My Account Already Exists... 4 V. Applying Your Subscription... 5 VI. Logging in

More information

Using the T&D Thermo App with TR-7wf Data Loggers

Using the T&D Thermo App with TR-7wf Data Loggers Using the T&D Thermo App with TR-7wf Data Loggers T&D Thermo The T&D Thermo App from T&D Corporation can be used to accomplish a variety of functions with the TR-7wf Series of Wi-Fi enabled wireless Data

More information

2006-2011, SHAPE Services www.shapeservices.com

2006-2011, SHAPE Services www.shapeservices.com RDM+ Remote Desktop for Mobiles For touchscreen BlackBerry devices Getting Started Guide... 2 1. Installing RDM+ Client on a BlackBerry... 2 2. Starting the client... 2 3. Registration and trial... 3 4.

More information

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application Kony MobileFabric Kony MobileFabric Messaging Demo App QuickStart Guide (Building a Sample Application Apple ios) Release 6.5 Document Relevance and Accuracy This document is considered relevant to the

More information

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents

Centran Version 4 Getting Started Guide KABA MAS. Table Of Contents Page 1 Centran Version 4 Getting Started Guide KABA MAS Kaba Mas Welcome Kaba Mas, part of the world-wide Kaba group, is the world's leading manufacturer and supplier of high security, electronic safe

More information

Mac - Juniper Remote Desktop Instructions

Mac - Juniper Remote Desktop Instructions Mac - Juniper Remote Desktop Instructions How to Set up & Remotely Connect to your Hospital Windows Workstation from your Remote Macintosh Computer Using the JSAM Feature of Juniper. Note: These instructions

More information

Acellus Natural 3D Tablet

Acellus Natural 3D Tablet Acellus Natural 3D Tablet Locked Down & Optimized for Use with the Acellus Learning System Acellus Natural 3D Tablet Locked Down & Optimized for Use with the Acellus Learning System Contents I. Quick Start

More information

III. The most important things you need to know about iphone app/game development

III. The most important things you need to know about iphone app/game development 1 III. The most important things you need to know about iphone app/game development There are lots of people who think they possess the quality to make a fundamental change on Apple s itunes store, but

More information

ios App Development for Everyone

ios App Development for Everyone ios App Development for Everyone Kevin McNeish Table of Contents Chapter 2 Objective C (Part 1) When I first started writing ios Apps, coding in Objective-C was somewhat painful. Like stuck-in-acheckout-line-behind-the-old-woman-writing-a-personal-check

More information

XenApp & XenDesktop Documentation. Help Desk (202) 994-8096 www.columbian.gwu.edu/ots

XenApp & XenDesktop Documentation. Help Desk (202) 994-8096 www.columbian.gwu.edu/ots XenApp & XenDesktop Documentation Help Desk (202) 994-8096 www.columbian.gwu.edu/ots 1 Version Date Comments Author v1.0 June 2011 Initial Version R. Shore v2.0 December 2011 Full Revision R. Shore v2.1

More information

such as USB drives, connected servers, DVDs, CDs, configure file labels, and the information that appears in the Finder window sidebar.

such as USB drives, connected servers, DVDs, CDs, configure file labels, and the information that appears in the Finder window sidebar. What Operating System (OS) do I have? Click once on the Apple apple menu in the upper left corner on your desktop Click on About this Mac - information is displayed such as the Processor speed and the

More information

How to use your ipad or iphone as a second monitor

How to use your ipad or iphone as a second monitor I work with a MacBook Pro on my lap and don t use an external monitor. But once in a while I need just a little bit of extra room on my screen. Did you know your ipad, iphone or ipod touch can be an extra

More information

ASUS WebStorage Client-based for Windows [Advanced] User Manual

ASUS WebStorage Client-based for Windows [Advanced] User Manual ASUS WebStorage Client-based for Windows [Advanced] User Manual 1 Welcome to ASUS WebStorage, your personal cloud space Our function panel will help you better understand ASUS WebStorage services. The

More information

Installing Basic PAYE Tools onto a networked computer

Installing Basic PAYE Tools onto a networked computer Installing Basic PAYE Tools onto a networked computer 1 Contents BPT RTI Network Installation Guide... 1 Contents...2 Overview and Disclaimer... 2 Guides...3 I want to install Basic PAYE Tools Real Time

More information

MERLIN. The Quick Start Guide to professional project management. 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved.

MERLIN. The Quick Start Guide to professional project management. 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved. MERLIN The Quick Start Guide to professional project management 2013 ProjectWizards GmbH, Melle, Germany. All rights reserved. INTRODUCTION Welcome to the quick start guide to Merlin! Thank you for choosing

More information

Information & Communication Technologies FTP and GroupWise Archives Wilfrid Laurier University

Information & Communication Technologies FTP and GroupWise Archives Wilfrid Laurier University Instructions for MAC users MAC users have not been joined to the Active Directory Domain. ICT is unable to capture GroupWise archives you may have on your computer automatically or confirm if you have

More information

How do you use word processing software (MS Word)?

How do you use word processing software (MS Word)? How do you use word processing software (MS Word)? Page 1 How do you use word processing software (MS Word)? Lesson Length: 2 hours Lesson Plan: The following text will lead you (the instructor) through

More information

unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001

unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 unisys ClearPath eportal Developer 6.1 Unisys Multi-Device App Developer s Guide March 2015 8230 0898 001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information described

More information

Syncing ipad devices using itunes

Syncing ipad devices using itunes User Guide Ergotron Tablet Management Cart Syncing ipad devices using itunes 48 Tablet Cart Owners Only... 1 itunes Setup... 3 ipad Set-up... 4 Ready To Sync... 5 ios Updates... 6 Using Apple itunes software

More information

X30 Apollo System Upgrading Monitor Software & ECU Firmware

X30 Apollo System Upgrading Monitor Software & ECU Firmware X30 Apollo System Upgrading Monitor Software & ECU Firmware 3.18.513 3.18.513 1. Download zip file attachment to a folder on your computer. File name will be 3.18.513.zip 2. Extract files from the zip

More information

Colligo Briefcase Enterprise. Administrator s Guide

Colligo Briefcase Enterprise. Administrator s Guide Enterprise Administrator s Guide CONTENTS Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying Colligo Briefcase...

More information

How to find the MAC address of your computer

How to find the MAC address of your computer How to find the MAC address of your computer To complete the Application for IP Connection, it is required that you include your MAC address. Explanations are provided for the following systems. Windows

More information

S PT-E550W ELECTRONIC E C LABELING L SYSTEM

S PT-E550W ELECTRONIC E C LABELING L SYSTEM ELECTRONIC E C LABELING L SYSTEM S PT-E0W In order to use your P-touch labeling system safely, read the included Quick Setup Guide first. Read this guide before you start using your P-touch labeling system.

More information

Using the Orbit Webcam & Skype to Video Conference

Using the Orbit Webcam & Skype to Video Conference Using the Orbit Webcam & Skype to Video Conference Quick Steps for connecting to a conference call Note: When connecting on a Skype conference call, you will need either the Skype name or the email address

More information

SimpleFTP. User s Guide. On-Core Software, LLC. 893 Sycamore Ave. Tinton Falls, NJ 07724 United States of America

SimpleFTP. User s Guide. On-Core Software, LLC. 893 Sycamore Ave. Tinton Falls, NJ 07724 United States of America SimpleFTP User s Guide On-Core Software, LLC. 893 Sycamore Ave. Tinton Falls, NJ 07724 United States of America Website: http://www.on-core.com Technical Support: support@on-core.com Information: info@on-core.com

More information

ios App Performance Things to Take Care

ios App Performance Things to Take Care ios App Performance Things to Take Care Gurpreet Singh Sachdeva Engineering Manager @ Yahoo Who should attend this session? If you are developing or planning to develop ios apps and looking for tips to

More information

FreeAgent DockStar Network Adapter User Guide

FreeAgent DockStar Network Adapter User Guide FreeAgent DockStar Network Adapter User Guide FreeAgent DockStar Network Adapter User Guide 2010 Seagate Technology LLC. All rights reserved. Seagate, Seagate Technology, the Wave logo, and FreeAgent are

More information

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac Create an ios App using Adobe Flash And without using a Mac Contents 1 Become an Apple ios Developer... 2 2 Add a Development Certificate... 4 3 Create a Certificate Signing Request (CSR)... 6 4 Register

More information

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29 I. Before Publishing 1. System requirements Requirements for ios App publishing using FlyingCatBuilder Mac running OS X version 10.9.4 or later Apple Development Account Enrollment in ios Developer Program

More information

Firmware & Software update procedures Amicroe TouchTAB IV.

Firmware & Software update procedures Amicroe TouchTAB IV. Firmware & Software update procedures Amicroe TouchTAB IV. Important note: The steps & procedures outlined below may be of assistance if you are experiencing difficulties with your Amicroe TouchTAB 9.7

More information

iprint For Apple Computers

iprint For Apple Computers iprint For Apple Computers Note: If you experience difficulties or are not comfortable installing the iprint drivers, please visit the TAC located in Randall Library for assistance IMPORTANT: If you have

More information

OverDrive Help for your ipad/iphone/ipod Touch

OverDrive Help for your ipad/iphone/ipod Touch OverDrive Help for your ipad/iphone/ipod Touch ios v: 6.0-6.9 Compatible Formats: EPUB, OEPUB, MP3 How to Set up the OverDrive app on your iphone, ipad or ipod You only need to do this once. 1. 1 2 3 2.

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Guide to Using the AK240 MQS Streaming Server. (Macintosh OS X Lion 10.7+ only)

Guide to Using the AK240 MQS Streaming Server. (Macintosh OS X Lion 10.7+ only) Guide to Using the AK240 MQS Streaming Server (Macintosh OS X Lion 10.7+ only) Installing & Running the MQS Streaming Server: The AK240 can access music files stored on computer on the same network. 1.

More information

Mobile Print/Scan Guide for Brother iprint&scan

Mobile Print/Scan Guide for Brother iprint&scan Mobile Print/Scan Guide for Brother iprint&scan Version K ENG Definitions of notes We use the following note style throughout this user s guide: specifies the operating environment, conditions for installation,

More information

HP MediaSmart Server istream User's Guide

HP MediaSmart Server istream User's Guide HP MediaSmart Server istream User's Guide Table of Contents Installing and Configuring HP MediaSmart Server istream 1 Streaming Music to iphone/ipod touch 5 Streaming Photos to iphone/ipod touch 7 Streaming

More information