Difference between revisions of "Mobile App Dev 2022W: Tutorial 5"

From Soma-notes
Jump to navigation Jump to search
(Created page with "'''This tutorial is still being developed.''' In this tutorial you will be playing with [https://homeostasis.scs.carleton.ca/~soma/mad-2022w/code/textanalyzer-3.zip textanaly...")
 
Line 3: Line 3:
In this tutorial you will be playing with [https://homeostasis.scs.carleton.ca/~soma/mad-2022w/code/textanalyzer-3.zip textanalyzer-3], which implements the same text analyzer functionality as [[Mobile App Dev 2022W: Tutorial 2|Tutorial 2's textanalyzer-1]] and [Mobile App Dev 2022W: Assignment 1|Assignment 1's textanalyzer-2].  This version, however, uses UIKit/Storyboard, not SwiftUI.
In this tutorial you will be playing with [https://homeostasis.scs.carleton.ca/~soma/mad-2022w/code/textanalyzer-3.zip textanalyzer-3], which implements the same text analyzer functionality as [[Mobile App Dev 2022W: Tutorial 2|Tutorial 2's textanalyzer-1]] and [Mobile App Dev 2022W: Assignment 1|Assignment 1's textanalyzer-2].  This version, however, uses UIKit/Storyboard, not SwiftUI.


Unlike past tutorials, here we are supplying the contents of the entire project rather than just one file.  If you have problems with this project you'll need to re-create the project as follows:
==Getting Started==
 
Unlike past tutorials, here we are [https://homeostasis.scs.carleton.ca/~soma/mad-2022w/code/textanalyzer-3.zip textanalyzer-3 supplying the contents of the entire project] rather than just one file.  If you have problems with this project you'll need to re-create the project as follows:


# Create a new iOS (not multiplatform) App.  The interface should be "Storyboard" (NOT SwiftUI) and the language should be Swift.
# Create a new iOS (not multiplatform) App.  The interface should be "Storyboard" (NOT SwiftUI) and the language should be Swift.

Revision as of 14:18, 8 February 2022

This tutorial is still being developed.

In this tutorial you will be playing with textanalyzer-3, which implements the same text analyzer functionality as Tutorial 2's textanalyzer-1 and [Mobile App Dev 2022W: Assignment 1|Assignment 1's textanalyzer-2]. This version, however, uses UIKit/Storyboard, not SwiftUI.

Getting Started

Unlike past tutorials, here we are textanalyzer-3 supplying the contents of the entire project rather than just one file. If you have problems with this project you'll need to re-create the project as follows:

  1. Create a new iOS (not multiplatform) App. The interface should be "Storyboard" (NOT SwiftUI) and the language should be Swift.


Key Concepts & APIs

Questions

Tasks

Code