Web 2.0 and iphone Application Development Workshop. Lab 2: iphone programming basics

Size: px
Start display at page:

Download "Web 2.0 and iphone Application Development Workshop. Lab 2: iphone programming basics"

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 2: iphone programming basics Objective: The aim of this lab is to let students get familiar with the basics of iphone programming. After this lab, student should learn how to develop a simple iphone application. Introduction: In this lab section, the following topics are included: - Function ViewDidLoad : A pre-defined function that will load when the application runs. - Function viewforzoominginscrollview : A pre-defined function that controls the action when the & $.74 ' 0 Object was zoomed in and out by using the multi-touch function. - Function shouldautorotatetointerfaceorientation : A pre-defined function that controls the action when the device orientation was changed. - pushviewcontroller : It is part of the 3,;, , which can move to the next view. - UIScrollView Object: It is an object that creates a scroll view in the application. - UIButton Object: It is an object that creates a button in the application. - UIWebView Object: It is an object that creates a Internal web browser in the application. iphone programming basics 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 3 hours. Overview: A Structure of an iphone application The basic structure of an iphone application can be mainly classified into 3 kinds of files:.h Header file which is edited in xcode..m Main file which is edited in xcode..xib Interface Builder file which is edited in the Interface Builder. B Basic Syntax of an iphone application 1. To define a variable in a header/main file: An IBOutlet object: :9 09& : An Integer: $ A String: $$ e/01 e Sub-class value: e /e iphone programming basics 2

3 2. To define a function in a header/main file: Header file: -(void)function1; -(IBAction)function2:(id)sender; Main file: -(void)function1 {. } -(IBAction)function2:(id)sender {. } Procedure: 1. Download the file lab2.zip from the server. Extract it to your Macintosh computer. 2. In the zip file, you can find the folder called basic. Open this and open -,8..4/0574. It is the template for this lab session. A Add title to the Navigation Bar (In Function ' 0 / 4,/ ) 1. Open the file called -, ,902. Find the function called,55.,9 43 / 3 8,:3. 3, add the following line inside,55.,9 43 / 3 8,:3. 3 : 2. Open the file called -,8.' Find the function called ' 0 / 4,/ by using the search function (Command + F). Add the following line inside ' 0 / 4,/. This line defined the title of the Navigation Bar. iphone programming basics 3

4 3. Click Build and Run to see the effect of the code you have just entered. B UIScrollVIew Objecty 1. In order to create a & $.74 ' 0 object, you need to drag a& $.74 ' 0 object to the view via the interface builder, which is already done for you in the -,8.' Open -,8.' , add the following line inside the interface tag. Save your work afterwards. 3. Open -,8.' , create the linkage of the & $.74 ' 0 object 8.74 ; 0 between the xib file and the header file. iphone programming basics 4

5 4. Open -,8.' , define the size of 8.74 ; 0 by adding the following line of code: 5. Save it and run it in the iphone simulator. C Zoom in/out of UIScrollView using multi-touch function 1. In order to zoom in/out of a & $.74 ' 0 Object, we need to include something in the -,8.' Open the -,8.' file and search for the ' 0 / 4,/ function, after that, add the following lines of code inside ' 0 / 4,/ : 2. In -,8.' , add the following function. The return value of the function is the name of the & $.74 ' 0 which you want it to be zoomed in/out. 3. Save the file and run it in the iphone simulator by clicking Build and Run in Xcode. Check that whether it can be zoomed in/out or not. iphone programming basics 5

6 D Change in Display Orientation according to device orientation 1. There is a pre-defined function called 8 4: /:94749,90% , ,9 43. Set the return value to $. 2. Save and click Build and Run. If you want to change the device orientation, click Hardware in the iphone Simulator and select the direction you want. 3. You may also try to return other value in 8 4: /:94749,90% , ,9 43. For instance, the application may change display orientation only when the device is in a specific orientation. y y iphone programming basics 6

7 E UIButton Object and Tap to next view 1. In this part, we are going to create a & :9943 object and define the action after user taps it. Open -,. 8' , define the function as shown. Save your work. 2. Open -,8.' , create the linkage between the & :9943 object and the function you ve just defined. There are many kinds of events we can choose, in this sample, select %4:. &5 38 /0. Save your work. 3. Open -,8.' , defined 9,5:9943 as follow. This is the action that the view of the application will be changed to another view. 4. Save your work. Click Build and run and check whether the view can be changed or not. iphone programming basics 7

8 F UIWebView object 1. In order to define a & 0-' 0 object, we need to add a & 0-' 0 object in the interface builder, which is already done for you. Another part is to define it in the header file 30 9' 0 as follow. Save your work. 2. Open nextview.xib, create the linkage between webtest from the main/header file to the interface builder. iphone programming basics 8

9 3. Create the linkage between the action 4,., 447,7/, #0 4,/ to the & :9943 object in the interface builder. Remember to add linkage to /0 0,90 of 0-%089, which is to the Save your work. 4. Open 30 9' 0 2, add the following line to ; 0 / 4,/ : 5. Save your work. Click Build and run to see whether the & 0-' 0 object can display the web content or not. - End of Lab 2 - iphone programming basics 9

Web 2.0 and iphone Application Development Workshop. Lab 5: Multimedia on iphone

Web 2.0 and iphone Application Development Workshop. Lab 5: Multimedia on iphone 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 5: Multimedia on

More information

CS193P: HelloPoly Walkthrough

CS193P: HelloPoly Walkthrough CS193P: HelloPoly Walkthrough Overview The goal of this walkthrough is to give you a fairly step by step path through building a simple Cocoa Touch application. You are encouraged to follow the walkthrough,

More information

Once file and folders are added to your Module Content area you will need to link to them using the Item tool.

Once file and folders are added to your Module Content area you will need to link to them using the Item tool. VITAL how to guides elearning Unit Last updated: 01.10.2010 Course Files tool Overview Course Files tool enables you to: Quickly copy large numbers of files into a VITAL module. Files can be dragged and

More information

My First Cocoa Program

My First Cocoa Program My First Cocoa Program 1. Tutorial Overview In this tutorial, you re going to create a very simple Cocoa application for the Mac. Unlike a line-command program, a Cocoa program uses a graphical window

More information

My First iphone App. 1. Tutorial Overview

My First iphone App. 1. Tutorial Overview My First iphone App 1. Tutorial Overview In this tutorial, you re going to create a very simple application on the iphone or ipod Touch. It has a text field, a label, and a button. You can type your name

More information

View Concepts. iphone Application Programming Lecture 4: User Interface Design. SDK provide many types of Views to show your content

View Concepts. iphone Application Programming Lecture 4: User Interface Design. SDK provide many types of Views to show your content View Concepts iphone Application Programming Lecture 4: User Interface Design SDK provide many types of Views to show your content At run-time Views are organized as a tree Chat Wacharamanotham Media Computing

More information

Objectives. Submission. Register for an Apple account. Notes on Saving Projects. Xcode Shortcuts. CprE 388 Lab 1: Introduction to Xcode

Objectives. Submission. Register for an Apple account. Notes on Saving Projects. Xcode Shortcuts. CprE 388 Lab 1: Introduction to Xcode Objectives Register for an Apple account Create an application using Xcode Test your application with the iphone simulator Import certificates for development Build your application to the device Expand

More information

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney

1 Build Your First App. The way to get started is to quit talking and begin doing. Walt Disney 1 Build Your First App The way to get started is to quit talking and begin doing. Walt Disney Copyright 2015 AppCoda Limited All rights reserved. Please do not distribute or share without permission. No

More information

Prezi Creating a Prezi

Prezi Creating a Prezi Prezi Creating a Prezi Log in to your account and click on the New Prezi button. Enter a title and (optional) description, and then click on the Create New Prezi button. Selecting a Template Select a template.

More information

ios Application Development Course Details

ios Application Development Course Details ios Application Development Course Details By Besant Technologies Course Name Category Venue ios Application Development Mobile Application Development Besant Technologies No.24, Nagendra Nagar, Velachery

More information

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview O VERVIEW OF OFFICE 36 5 FOR STUDENTS Use this overview to get acquainted with Office 365 for students. Passero, Denise Author OFFICE 365 FOR STUDENTS Overview Overview of Office 365 for Students Downloading

More information

Exporting a Class List from MarkBook Windows to MarkBook Mac and ios

Exporting a Class List from MarkBook Windows to MarkBook Mac and ios Exporting a Class List from MarkBook Windows to MarkBook Mac and ios In MarkBook Mac or ios (IPad, iphone and ipod touch), the class list may be entered directly by typing or imported from a file created

More information

Registering for the Apple Developer Program

Registering for the Apple Developer Program It isn t necessary to be a member of the Apple Developer Program if you don t intend to submit apps to the App Stores, or don t need the cloud-dependent features. We strongly recommend joining, though,

More information

Apple Watch Docs. Release 0.1. Michael Hahn

Apple Watch Docs. Release 0.1. Michael Hahn Apple Watch Docs Release 0.1 Michael Hahn Nov 20, 2017 Contents 1 First Watch Glance 3 1.1 Create an iphone App.......................................... 3 1.2 Add WatchKit Targets..........................................

More information

Assignment III: Graphing Calculator

Assignment III: Graphing Calculator Assignment III: Graphing Calculator Objective The goal of this assignment is to reuse your CalculatorBrain and CalculatorViewController objects to build a Graphing Calculator. By doing this, you will gain

More information

Mac OS X and ios operating systems. Lab 1 Introduction to Mac OS X and ios app development. Gdańsk 2015 Tomasz Idzi

Mac OS X and ios operating systems. Lab 1 Introduction to Mac OS X and ios app development. Gdańsk 2015 Tomasz Idzi Mac OS X and ios operating systems Lab 1 Introduction to Mac OS X and ios app development Gdańsk 2015 Tomasz Idzi Introduction This lab is designed to acquaint the student with the basic functionality

More information

Drag and drop. All done!

Drag and drop. All done! Working with Moodle, a Guide for Faculty Posting Course Materials and Managing Files Summary Moodle helps you share many different types of files with your students - Word documents, PowerPoint presentations,

More information

Hello! ios Development

Hello! ios Development SAMPLE CHAPTER Hello! ios Development by Lou Franco Eitan Mendelowitz Chapter 1 Copyright 2013 Manning Publications Brief contents PART 1 HELLO! IPHONE 1 1 Hello! iphone 3 2 Thinking like an iphone developer

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Pictello (ipad, iphone and ipod touch). In this tutorial you will learn how to create, save and restore Pictello library backups with itunes File Sharing

More information

About Xcode and iphone SDK

About Xcode and iphone SDK apple About Xcode and iphone SDK iphone SDK and Xcode 3.1.2 developer tools for iphone OS 2.2 Contents Introduction Compatibility with Mac OS X Versions What's New Installation Deprecation Notice Introduction

More information

Mobile 3.1 ios & Android v2

Mobile 3.1 ios & Android v2 Mobile 3.1 ios & Android v2 Bookshelf Mobile 3.1 ios and Android v2 1 Introduction VitalSource Bookshelf lets you download and access books on any of the following devices: Android smartphone or tablet

More information

iphone App Basics iphone and ipod touch Development Fall 2009 Lecture 5

iphone App Basics iphone and ipod touch Development Fall 2009 Lecture 5 iphone App Basics iphone and ipod touch Development Fall 2009 Lecture 5 Questions? Announcements Assignment #1 due this evening by 11:59pm Remember, if you wish to use a free late you must email me before

More information

Topics in Mobile Computing

Topics in Mobile Computing Topics in Mobile Computing Workshop 1I - ios Fundamental Prepared by Y.H. KWOK What is ios? From Wikipedia (http://en.wikipedia.org/wiki/ios): ios is an operating system for iphone, ipad and Apple TV.

More information

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX

Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Part 2 Uploading and Working with WebCT's File Manager and Student Management INDEX Uploading to and working with WebCT's File Manager... Page - 1 uploading files... Page - 3 My-Files... Page - 4 Unzipping

More information

View Concepts. iphone Application Programming Lecture 4: User Interface Design. SDK provide many types of Views to show your content

View Concepts. iphone Application Programming Lecture 4: User Interface Design. SDK provide many types of Views to show your content View Concepts iphone Application Programming Lecture 4: User Interface Design SDK provide many types of Views to show your content At run-time Views are organized as a tree Chat Wacharamanotham Media Computing

More information

Using Advanced Interface Objects and Views

Using Advanced Interface Objects and Views HOUR 9 Using Advanced Interface Objects and Views What You ll Learn This Hour:. How to use segmented controls (a.k.a. button bars). Ways of inputting Boolean values via switches. How to include web content

More information

iphone Programming Patrick H. Madden SUNY Binghamton Computer Science Department

iphone Programming Patrick H. Madden SUNY Binghamton Computer Science Department iphone Programming Patrick H. Madden SUNY Binghamton Computer Science Department pmadden@acm.org http://optimal.cs.binghamton.edu General Outline Overview of the tools, and where to get more information

More information

Lifespan Guide for installing and using Citrix Receiver on your Mobile Device

Lifespan Guide for installing and using Citrix Receiver on your Mobile Device Lifespan Guide for installing and using Citrix Receiver on your Mobile Device About Remote Access with Citrix Receiver... 2 Installation Instructions for iphones:... 3 ios - Learning Gestures... 7 Installation

More information

ITP 342 Mobile App Dev. Interface Builder in Xcode

ITP 342 Mobile App Dev. Interface Builder in Xcode ITP 342 Mobile App Dev Interface Builder in Xcode New Project From the Main Menu, select the File à New à Project option For the template, make sure Application is selected under ios on the left-hand side

More information

Tutorial for loading music files into an Ipad

Tutorial for loading music files into an Ipad Tutorial for loading music files into an Ipad 1. For this example we ll use Adobe Acrobat Reader as the application (app) that we ll use to file and store our music on our Ipad. There are other music applications

More information

Getting to Know Pages on ipad

Getting to Know Pages on ipad Getting to Know Pages on ipad This guide will give you the basic instructions of how to use the Pages App on ipad. Documents Step 1 To create new documents and find the ones you ve worked on before, go

More information

Searching Commercial Listings

Searching Commercial Listings Searching Commercial Listings In this guide we will review how to search for listings on the CBA website and provide tips for successful search results Commercial Brokers Association May 2018 Search Listings

More information

Microsoft SharePoint Server 2016 for the Site Owner/Power User

Microsoft SharePoint Server 2016 for the Site Owner/Power User Course 55197: Microsoft SharePoint Server 2016 for the Site Owner/Power User Page 1 of 5 Microsoft SharePoint Server 2016 for the Site Owner/Power User Course 55197: 2 days; Instructor-Led Introduction

More information

Lesson 1: Hello ios! 1

Lesson 1: Hello ios! 1 Contents Introduction xxv Lesson 1: Hello ios! 1 ios Developer Essentials 1 A Suitable Mac 1 A Device for Testing 2 Device Differences 2 An ios Developer Account 4 The Official ios SDK 6 The Typical App

More information

CS193p Spring 2010 Wednesday, March 31, 2010

CS193p Spring 2010 Wednesday, March 31, 2010 CS193p Spring 2010 Logistics Lectures Building 260 (History Corner) Room 034 Monday & Wednesday 4:15pm - 5:30pm Office Hours TBD Homework 7 Weekly Assignments Assigned on Wednesdays (often will be multiweek

More information

Download and Reports

Download and  Reports BASICS Download and Email Reports Click on a question below to skip to the answer. How do I download reports? Can I download a report more than once? How do I download a different type of report? Do I

More information

How to set up staff on your ios device (iphone, ipod or ipad)

How to set up staff  on your ios device (iphone, ipod or ipad) How to set up staff email on your ios device (iphone, ipod or ipad) This document shows you how to set up a connection between your Apple mobile device and your university staff Exchange mail account,

More information

WebEx. Web Conferencing Tool. Fordham IT

WebEx. Web Conferencing Tool. Fordham IT WebEx Web Conferencing Tool STUDENT User Guide Fordham IT Contents WebEx Student User Guide Schedule a Meeting Using the WebEx Meeting Site 1 WebEx Scheduling Template 2 Join a Meeting 4 Participate in

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2)

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) More on Relative Linking. Learning Objectives (2 of 2) Web Development & Design Foundations with HTML5 Ninth Edition Chapter 7 More on Links, Layout, and Mobile Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links

More information

D2L Start Up! I. To log in... 2 II. Your Profile I. Main Navigation Bar... 3 II. News... 4 III. Role Switch... 4 IV. Calendar...

D2L Start Up! I. To log in... 2 II. Your Profile I. Main Navigation Bar... 3 II. News... 4 III. Role Switch... 4 IV. Calendar... D2L Start Up! Objectives: Familiarize yourself with the Main Navigation Bar in D2L. Create your profile. Create and delete News Items. Set up notifications. Create modules and sub-modules. Upload documents

More information

There are several formatting conventions used in this document. Please take note of the formatting styles:

There are several formatting conventions used in this document. Please take note of the formatting styles: Using Blackboard The majority of the teaching on this course will be delivered using software called Blackboard. Blackboard is one of many Virtual Learning Environments used to teach over the internet.

More information

How to Connect to the CSH Virtual Desktop

How to Connect to the CSH Virtual Desktop How to Connect to the CSH Virtual Desktop From Home (or anywhere you have an Internet connection) We recommend you print the section that applies to you 1. For Windows, print pages 2-16 2. For IOS Devices

More information

Materials for SOS Workshop No. 1 Getting more out of Microsoft Office Word

Materials for SOS Workshop No. 1 Getting more out of Microsoft Office Word Materials for SOS Workshop No. 1 Getting more out of Microsoft Office Word SOS Workshop Series 2014 Materials in Support of SOS Workshop No. 1 Updated 3 March 2014 Prepared by Karen Spear Ellinwood, PhD,

More information

Mobile Apps 2010 iphone and Android

Mobile Apps 2010 iphone and Android Mobile Apps 2010 iphone and Android March 9, 2010 Norman McEntire, Founder Servin Corporation - http://servin.com Technology Training for Technology ProfessionalsTM norman.mcentire@servin.com 1 Legal Info

More information

Things to note: Each week Xampp will need to be installed. Xampp is Windows software, similar software is available for Mac, called Mamp.

Things to note: Each week Xampp will need to be installed. Xampp is Windows software, similar software is available for Mac, called Mamp. Tutorial 8 Editor Brackets Goals Introduction to PHP and MySql. - Set up and configuration of Xampp - Learning Data flow Things to note: Each week Xampp will need to be installed. Xampp is Windows software,

More information

This is the lesson workshop to create a test page in DIVI

This is the lesson workshop to create a test page in DIVI SCWCLUBS.COM Websites are a very important forms of communication. People thinking about Arizona are comparing communities. People in SCW are comparing clubs. Club members are checking information. Keep

More information

Designing for Web Using Markup Language and Style Sheets

Designing for Web Using Markup Language and Style Sheets Module Presenter s Manual Designing for Web Using Markup Language and Style Sheets Effective from: July 2014 Ver. 1.0 Amendment Record Version No. Effective Date Change Replaced Pages 1.0 July 2014 New

More information

CSC 581: Mobile App Development Spring 2018

CSC 581: Mobile App Development Spring 2018 CSC 581: Mobile App Development Spring 2018 Unit 2: Introduciton to the UIKit UIKit, UIViews UIControl subclasses 1 UIKit the UIKit is a code framework for building mobile apps the foundational class for

More information

User s Guide to Breeze Web Application. Page 1

User s Guide to Breeze Web Application. Page 1 User s Guide to Breeze Web Application Page 1 Contents Breeze Web Site Navigation Tips... 5 The Save Button... 5 The Cancel Button... 6 The New Button... 6 The Users, Databases and Email Users Tabs...

More information

The MVC Design Pattern

The MVC Design Pattern The MVC Design Pattern The structure of iphone applications is based on the Model-View-Controller (MVC) design pattern because it benefits object-oriented programs in several ways. MVC based programs tend

More information

Getting Started with Apple ios Development Link-OS SDK Objective-C

Getting Started with Apple ios Development Link-OS SDK Objective-C Getting Started with Apple ios Development Link-OS SDK Objective-C Overview This document describes the end to end process of designing, packaging, deploying and running an Apple iphone /ipod application

More information

Remote Desktop Services Guide. Android DG ITEC ESIO - STANDARDS

Remote Desktop Services Guide. Android DG ITEC ESIO - STANDARDS Remote Desktop Services Guide Android DG ITEC ESIO - STANDARDS Table of Contents Table of Contents... 2 1 Introduction... 3 2 Download and Install Citrix Receiver... 3 3 RSA Authentication... 4 4 Setting

More information

S A M P L E C H A P T E R

S A M P L E C H A P T E R SAMPLE CHAPTER Anyone Can Create an App by Wendy L. Wise Chapter 5 Copyright 2017 Manning Publications brief contents PART 1 YOUR VERY FIRST APP...1 1 Getting started 3 2 Building your first app 14 3 Your

More information

Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network

Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network Connecting Your iphone, ipad, or ipod touch to the NEIU Secured Network This document has been written to assist Northeastern Illinois University faculty, staff, and students connect their iphones, ipads,

More information

Operating Instructions for SugarSync

Operating Instructions for SugarSync Operating Instructions for SugarSync The contents of this manual may be revised without prior notice. PFU LIMITED assumes no liability for damages to third party copyrights or other rights arising from

More information

Writing Reports with Report Designer and SSRS 2014 Level 1

Writing Reports with Report Designer and SSRS 2014 Level 1 Writing Reports with Report Designer and SSRS 2014 Level 1 Duration- 2days About this course In this 2-day course, students are introduced to the foundations of report writing with Microsoft SQL Server

More information

My First iphone App (for Xcode version 6.4)

My First iphone App (for Xcode version 6.4) My First iphone App (for Xcode version 6.4) 1. Tutorial Overview In this tutorial, you re going to create a very simple application on the iphone or ipod Touch. It has a text field, a label, and a button

More information

Adding Content. 4. The following page will display (see image to the right): 5. Enter the title of the text page in the Name* field (required).

Adding Content. 4. The following page will display (see image to the right): 5. Enter the title of the text page in the Name* field (required). Adding Content When content is added to ecourses, two things must happen: 1. The content must be either composed within ecourses or uploaded from an offline storage area or located at an online site. 2.

More information

Blackboard Basics Instructional Technology Services Seattle Pacific University

Blackboard Basics Instructional Technology Services Seattle Pacific University Blackboard Basics Instructional Technology Services Seattle Pacific University What is going to be covered today? Overview of the SPU Blackboard environment Recommended computer specifications and plug-ins

More information

ios 9 SDK Development

ios 9 SDK Development Extracted from: ios 9 SDK Development Creating iphone and ipad Apps with Swift This PDF file contains pages extracted from ios 9 SDK Development, published by the Pragmatic Bookshelf. For more information

More information

SERVICES REMOTE AUCTION. Live Auction Broadcast and Mobile Lot Board. Both of these services are available in English and Chinese.

SERVICES REMOTE AUCTION. Live Auction Broadcast and Mobile Lot Board. Both of these services are available in English and Chinese. REMOTE AUCTION SERVICES Live Auction Broadcast and Mobile Lot Board Both of these services are available in English and Chinese. Please note: to access these services, you are no longer required to log

More information

How will you design your course and organize your material? Consider

How will you design your course and organize your material? Consider Blackboard TM 9.1 Tools How will you design your course and organize your material? Consider Content Areas: add your syllabus, course documents such as handout, related Websites, assignments, and other

More information

The heading of the files manager shows the current folder as the title. On the left, the parent folder name is

The heading of the files manager shows the current folder as the title. On the left, the parent folder name is FILE MANAGEMENT - NEW, OPEN AND SAVE NAVIGATING FILE MANAGER iweaveit now uses IOS files management. It is similar to the Files App on your iphone or ipad 1. Pick New / Open / Manage Files on the Action

More information

Building the App - Part 5 - Adding a Link

Building the App - Part 5 - Adding a Link Unit 4 - Coding For Your App Copy and Paste the code below exactly where the tutorials tell you. DO NOT COPY TEXT IN RED. Building the App - Part 5 - Adding a Link XCODE 7 @IBAction func Button1(_ sender:

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston Hall Room 226 718-289-5100 ext. 3142 GETTING

More information

John Ray. Sams Teach Yourself. iphone. Application Development. Second Edition. S^/MS 800 East 96th Street, Indianapolis, Indiana, USA

John Ray. Sams Teach Yourself. iphone. Application Development. Second Edition. S^/MS 800 East 96th Street, Indianapolis, Indiana, USA John Ray Sams Teach Yourself iphone Application Development Second Edition S^/MS 800 East 96th Street, Indianapolis, Indiana, 46240 USA Table of Contents Introduction 1 Who Can Become an iphone Developer?

More information

Getting Started with your LSC Integrative Knowledge e-portfolio

Getting Started with your LSC Integrative Knowledge e-portfolio Getting Started with your LSC Integrative Knowledge e-portfolio These directions will guide you through logging into the e-portfolio and beginning to add content to it. 1 Getting Started With Your Integrative

More information

Salesforce Classic Mobile Guide for iphone

Salesforce Classic Mobile Guide for iphone Salesforce Classic Mobile Guide for iphone Version 41.0, Winter 18 @salesforcedocs Last updated: November 30, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

STORE LOCATOR PLUGIN USER GUIDE

STORE LOCATOR PLUGIN USER GUIDE support@simicart.com Support: +84.3127.1357 STORE LOCATOR PLUGIN USER GUIDE Table of Contents 1. INTRODUCTION... 3 2. HOW TO INSTALL... 4 3. HOW TO CONFIGURE... 5 4. HOW TO USE ON APP... 13 SimiCart Store

More information

3. Surfing with Your ipad

3. Surfing with Your ipad 101 3. Surfing with Your ipad In this chapter you are going to get acquainted with Safari, the web browser used by all Apple devices. With this web browser you can surf the Internet using your ipad. If

More information

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv

Train the Trainer Resources Hex Files Here - https://goo.gl/mqovrv Finding you way around a micro:bit Topic 1 Hello World These resources can be found at https://faradaysecondary.theiet.org/umbraco/surface/download/downloadfile/3910 and /assets/documents/microbitcommunityposter.pdf

More information

FileMaker in Your Pocket

FileMaker in Your Pocket FileMaker in Your Pocket User s Guide 2008 FMWebschool, Inc. All Rights Reserved FileMaker is a trademark of FileMaker Inc., registered in the U.S. and other countries. This documentation is to be used

More information

How to Download Photographs and Video from Digital Cameras at SMS

How to Download Photographs and Video from Digital Cameras at SMS How to Download Photographs and Video from Digital Cameras at SMS Cameras with SD Card (see next page for video cameras) 1. Laptop computer: Remove the SD card from the camera and insert it into the SD

More information

Developing Rich Internet Applications Using Microsoft Silverlight 4

Developing Rich Internet Applications Using Microsoft Silverlight 4 Developing Rich Internet Applications Using Microsoft Silverlight 4 Duration: 5 Days Course Code: M10554 Overview: This course covers intermediate and advanced topics required to develop professional Silverlight

More information

Guidebook is currently supported as an app on the devices listed in this support article.

Guidebook is currently supported as an app on the devices listed in this support article. Step 1: How to Download Guidebook The steps below will give you access to the Guidebook app. If you have received instructions to download a different app, please refer to those instructions! To download

More information

ipad Settings Turn on icloud Backup Go to Settings, icloud. From here you can choose what items you want to have backed up.

ipad Settings Turn on icloud Backup Go to Settings, icloud. From here you can choose what items you want to have backed up. ipad Settings Make Passcode Complex for More Security A four digit passcode isn t as secure as a longer string of characters and numbers. To change this go to Settings and tap on Touch ID & Passcode. To

More information

myfiles on Gateway Guide - Students

myfiles on Gateway Guide - Students myfiles on Gateway Guide - Students Updated: August 11, 2012 Created: Feb. 06, 2012 Contents What is myfiles?... 1 Log into myfiles... 1 How to set your file view preferences... 1 How to open folders...

More information

WebEx. Web Conferencing Tool. Fordham IT

WebEx. Web Conferencing Tool. Fordham IT WebEx Web Conferencing Tool Faculty + Staff User Guide Fordham IT Contents WebEx Faculty + Staff User Guide Schedule a Meeting Using the WebEx Meeting Site 1 WebEx Scheduling Template 2 Join a Meeting

More information

Module 2: Content Development Organize Course Materials

Module 2: Content Development Organize Course Materials Module 2: Content Development Organize Course Materials Three Ways To Access Files View Files Structure Import Files View Course Structure Create Modules Lock Modules Syllabus I: Overview Syllabus II:

More information

Using Modules in Canvas

Using Modules in Canvas Using Modules in Canvas Modules in Canvas are used to organize the course content. Each module can contain files, discussions, assignments, quizzes, and other learning materials. Modules are especially

More information

In the first class, you'll learn how to create a simple single-view app, following a 3-step process:

In the first class, you'll learn how to create a simple single-view app, following a 3-step process: Class 1 In the first class, you'll learn how to create a simple single-view app, following a 3-step process: 1. Design the app's user interface (UI) in Xcode's storyboard. 2. Open the assistant editor,

More information

ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout

ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout ios DeCal : Lecture 2 Structure of ios Applications: MVC and Auto Layout Overview : Today s Lecture Model View Controller Design Pattern Creating Views in Storyboard Connecting your Views to Code Auto

More information

Storing Your Exercise Files

Storing Your Exercise Files Storing Your Exercise Files This appendix contains an overview for using this book with various file storage media, such as a USB flash drive or hard drive. Detailed instructions for downloading and unzipping

More information

Event Password: NationalCenter2017 DON T FORGET STEP 2 ON THE NEXT PAGE!

Event Password: NationalCenter2017 DON T FORGET STEP 2 ON THE NEXT PAGE! Hi, We ve built a mobile app for 2017 Parents as Teachers International Conference! It has all the important information you ll need for the event, and features to enhance your event experience. Step 1:

More information

Accommodations Upload Quick Guide Oklahoma School Testing Program & College and Career Readiness Assessments Spring 2018

Accommodations Upload Quick Guide Oklahoma School Testing Program & College and Career Readiness Assessments Spring 2018 Accommodations Upload Quick Guide Oklahoma School Testing Program & College and Career Readiness Assessments Spring 2018 1 Table of Contents Extracting the emetric Report in OK EdPlan... 3 Uploading to

More information

Determining Your MAC address

Determining Your MAC address Determining Your MAC address A MAC (Media Access Control) address is a set of six pairs of alphanumeric characters separated by colons or dashes, e.g., AA:BB:CC:11:22:33, that uniquely identifies each

More information

Homework #1: SSH. Step 1: From the start button (lower left hand corner) type Secure. Then click on the Secure Shell File Transfer Client.

Homework #1: SSH. Step 1: From the start button (lower left hand corner) type Secure. Then click on the Secure Shell File Transfer Client. Homework #1: SSH Due WEEK 3 at the BEGINNING of lab CSE 3, Spring 2018 A. The program Some students had trouble using this program in the past. It isn t too bad if you just take a few minutes to read and

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

Essay & Assignment Preparation using MindGenius

Essay & Assignment Preparation using MindGenius Essay & Assignment Preparation using MindGenius This workshop is aimed at those of you who struggle gathering and sorting information when beginning to write an essay. Using MindGenius you can plan essays

More information

IProSecu M. Manual 1

IProSecu M. Manual 1 IProSecu M. Manual 1 Table of Contents Abstract...4 Features...4 Site Management...4 Live View...4 Image Management and View...5 IProSecu M. Main UI...5 I. Site Management...6 A. Install IProSecu M. application...6

More information

Also, it will give you an idea of how easily students can use video to create their own engaging multimedia projects:

Also, it will give you an idea of how easily students can use video to create their own engaging multimedia projects: HOW TO SESSION : Editing your own video with imovie Overview Video is everywhere and almost everyone carries a device capable of making it in their pocket. And with just a bit of practice, you can use

More information

Microsoft SharePoint Server 2013 for the Site Owner/Power User

Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035B: Microsoft SharePoint Server 2013 for the Site Owner/Power User Page 1 of 6 Microsoft SharePoint Server 2013 for the Site Owner/Power User Course 55035B: 2 days; Instructor-Led Introduction

More information

Table of Contents CHILD CHECK IN OVERVIEW Check In / Out Process...3 Check In Methods...3 Name Tags and Security Tags...5 Check Out...

Table of Contents CHILD CHECK IN OVERVIEW Check In / Out Process...3 Check In Methods...3 Name Tags and Security Tags...5 Check Out... Table of Contents CHILD CHECK IN OVERVIEW Check In / Out Process...3 Check In Methods...3 Name Tags and Security Tags...5 Check Out...6 INSTALLING ROLL CALL for CHILD CHECK-IN Hardware/Software Requirements...7

More information

How to Access Your Digital Member Magazine

How to Access Your Digital Member Magazine How to Access Your Digital Member Magazine GETTING STARTED WHERE TO GO: Point your browser to daytonartinstitute.org/magazine to find the latest issue of the Member Magazine. WHERE TO GO: You may also

More information

Essay & Assignment Preparation using MindGenius

Essay & Assignment Preparation using MindGenius Essay & Assignment Preparation using MindGenius This workshop is aimed at those of you who struggle gathering and sorting information when beginning to write an essay. Using MindGenius you can plan essays

More information

A Mad Libs app that you will navigate through 3 UIViewControllers to add text that will be shown in a story on the fourth UIViewController.

A Mad Libs app that you will navigate through 3 UIViewControllers to add text that will be shown in a story on the fourth UIViewController. WordPlay App: A Mad Libs app that you will navigate through 3 UIViewControllers to add text that will be shown in a story on the fourth UIViewController. Create a new project Create a new Xcode project

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

Exporting data from reference management software

Exporting data from reference management software Exporting data from reference management software Step 1: Finding the correct tagged text file Step 2: Saving the tagged text file Output Style in the right place Step 3: Using the style file to export

More information

Publisher v3 Documentation

Publisher v3 Documentation Publisher v3 Documentation Questions? email me: t0rn@inbox.ru!1 Description Publisher - Xcode project of universal ios app for selling PDF publications. Programming language - Swift 3. Complitable with

More information

Getting started with the OverDrive App for Smartphones & Tablets

Getting started with the OverDrive App for Smartphones & Tablets Download the free OverDrive app To download the app for: iphone, ipod Touch, or ipad - Visit the itunes App Store. Android - Visit the Google Play Store. Kindle Fire - Visit the Amazon Store. a. Open the

More information